我刚刚开始使用Android SDK,我的第一个应用程序出现问题。目前,我正在尝试列出一个大列表中的所有用户。然而,无论我尝试什么,该应用程序继续强制关闭。我在示例文件中找到了代码,但这仍然给我带来了问题。以下是我正在使用的代码。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
String[] projection = new String[] {
People._ID,
People._COUNT,
People.NAME,
People.NUMBER
};
//Get the base URI for the People table in the Contacts content provider.
Uri contacts = People.CONTENT_URI;
//Make the query.
Cursor managedCursor = managedQuery(contacts,
projection, // Which columns to return
null, // Which rows to return (all rows)
null, // Selection arguments (none)
// Put the results in ascending order by name
People.NAME + " ASC");
Cursor c = getContentResolver().query(Contacts.CONTENT_URI, null, null, null, null);
startManagingCursor(c);
String[] columns = new String[] {People.NAME};
int[] names = new int[] {R.id.text1};
SimpleCursorAdapter mAdapter = new SimpleCursorAdapter(this,
R.layout.main, c, columns, names);
setListAdapter(mAdapter);
}
这是直接来自示例文件,但它仍然出错。我发现引起问题的那一行是“Cursor managedCursor = managedQuery(contacts,”line。还有其他人看过这个吗?我很茫然,2小时后没有找到任何解决方案或研究。
另外,我已将以下行添加到我的应用程序的清单文件中:
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
谢谢,如果您需要更多信息,请告诉我。
答案 0 :(得分:4)
我相信SDK文档中的示例已过时。尝试从光标投影中删除People._COUNT
列。
可能会导致IllegalArgumentException
(请参阅adb logcat
的输出)