I already saw a similar question here , and I already added the line import android.content.res.Configuration; . However, this did not help.
I am writing a class that extends AdapterView<Adapter> , and Eclipse will not allow me to override onConfigurationChanged(Configuration) . As seen on the AdapterView page in Android Docs , the method does exist. So why can't I override it?
Here is my implementation:
import android.content.Context; import android.content.res.Configuration; import android.view.View; import android.widget.Adapter; import android.widget.AdapterView; public class Foo extends AdapterView<Adapter> { public Foo(Context context) { super(context);
source share