You probably have the wrong import of your project / class. You are probably extending ListFragment from API 11 (android.app.ListFragment) and you should extend ListFragment from compatibility class ( android.support.v4.app.ListFragment
)
source share