Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to extend ListFragment - "Call requires API level 11"

I'm trying to extend ListFragment, but I keep getting the error stated above. I added the android support library to my project.

like image 230
Omar Avatar asked Nov 28 '22 21:11

Omar


2 Answers

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)

like image 177
Budius Avatar answered Dec 04 '22 13:12

Budius


Try adding

import android.support.v4.app.Fragment;
import android.support.v4.app.ListFragment;
like image 22
Iain_b Avatar answered Dec 04 '22 13:12

Iain_b