を照会しようとすると、私はBroadcastReceiver内でこのコードを持っている:は、私が得た以前の回答に基づいてContactList
Uri lookupUri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(ASenderTel));
// Also tried;
//ContentResolver cr = getContentResolver();
//Context c = this;
Cursor c = getContentResolver().query(lookupUri, new String[] { PhoneLookup._ID }, null, null, null);
return (c.getCount() > 0);
を...しかし、ERRのMSGを取得し、「方法getContentResolverは()のタイプのために定義されていませんKITSMSReceiver "
私が使用している場合:。 ContentResolverのCR = getContentResolver()クエリ(lookupUri、 新しいString [] {PhoneLookup._ID} 、null、null、null); ... ERRのMSGは、ある "方法getContentResolver()型KITSMSReceiverため未定義である" (KITSMSReceiverがBroadcastReceiverある)ひどく入り組んだと思わ –