'@Override Error: method does not override method from superclass (Android Studio)

After creating any new android project inside android studio, the following error happens: Screenshot

It's an error related to @Override, saying:

method does not override method from superclass

How would I resolve this error?



Solution 1:[1]

When you add @Override to a method, if

method does not override method from superclass

appears. It means IDE can't find the method with same signature in its super class.

From my view, I guess you didn't add the library which contains AppCompatActivity properly. Please have it examined.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Eugene