Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试扩展 ListFragment,但我不断收到上述错误。我将 android 支持库添加到我的项目中。
您的项目/类可能有错误的导入。您可能从 API 11 (android.app.ListFragment) 扩展 ListFragment,并且应该从兼容性类 ( android.support.v4.app.ListFragment)扩展 ListFragment
android.support.v4.app.ListFragment
尝试添加
import android.support.v4.app.Fragment; import android.support.v4.app.ListFragment;