I'm trying to extend ListFragment, but I keep getting the error stated above. I added the android support library to my project.
You probably have the wrong import on your project/class.
You probably extending ListFragment from the API 11 (android.app.ListFragment)
and you should extend ListFragment from the compatibility class (android.support.v4.app.ListFragment
)
Try adding
import android.support.v4.app.Fragment;
import android.support.v4.app.ListFragment;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With