1

当我在 android 4.1 中编写此代码时

    Intent intent = new Intent(Intent.ACTION_INSERT);
    intent.setData(CalendarContract.Events.CONTENT_URI);
    startActivity(intent); 

它给了我以下错误:

Field requires API level 14 (current min is 8): 
                   android.provider.CalendarContract$Events#CONTENT_URI

请告诉我如何解决这个问题。谢谢

4

2 回答 2

2

在您的 AndroidManifest.xml 文件中更改

android:minSdkVersion="8"

android:minSdkVersion="14"
于 2012-09-06T12:51:11.933 回答
0
   change android manifest.xml android:minSdkVersion="8" 8 to 14.
于 2012-09-06T12:50:35.710 回答