'@Override Error: method does not override method from superclass (Android Studio)
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 |