SimpleCursorAdapter不断为API 10抛出错误

时间:2013-01-06 04:45:48

标签: android simplecursoradapter android-support-library

我的项目的minSDK为10,目标为17.我通过右键单击android-support-v4.jar文件并选择“Build Path - >”,将.jar添加到项目构建路径中。添加到构建路径“。当我清理项目时,SimpleCursorAdapter的错误消失了。但是,当我尝试运行该活动时,出现以下错误:

  

01-05 23:42:56.187:E / AndroidRuntime(483):   java.lang.NoSuchMethodError:android.widget.SimpleCursorAdapter。

另外,如果我对活动进行了更改,我每次都要清理项目,只是为了摆脱SimpleCursorAdapter的错误。

我在这里缺少什么?为什么这不能正常工作?

1 个答案:

答案 0 :(得分:5)

您应该使用该类的兼容版本。检查您的导入并确保使用它:

import android.support.v4.widget.SimpleCursorAdapter;