我正在逐步完成“专业 Android 4 应用程序开发”中的教程。在第 5 章中,有一个简单的应用程序演示了选择联系人并打印结果。
在我进入应用程序并对其进行测试后,我收到以下错误:
10-06 11:29:04.596: W/ContentResolver(1073): 无法获取类型: content://contacts/ (URI: content://contacts/, 调用用户: android.uid.system:1000, 调用包是以下之一:[com.android.keychain, com.android.settings, android, com.android.providers.settings, com.android.inputdevices])
该字符串在以下方法中被引用:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_contact_picker_tester);
Button button = (Button) findViewById(R.id.pick_contact_button);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(Intent.ACTION_PICK, Uri.parse("content://contacts/"));
startActivityForResult(intent, PICK_CONTACT);
}
});
}
我想也许我做错了什么,所以我从书源代码中运行了相应的示例并得到了同样的错误。任何想法这里可能有什么问题?