在 Android 文档(内容提供者)中,CallLog.Calls._Count 是 BaseColumns 的一部分,但 logcat 在运行此代码时说无效列 _COUNT:
String[] projection = new String[] { CallLog.Calls._COUNT };
Cursor cursor = this.getContext().getContentResolver().query(CallLog.Calls.CONTENT_URI, projection, null, null, null);
请看这个问题:http ://code.google.com/p/android/issues/detail?id=1343
谢谢