Hello
I make a BroadcastReceiver to receive Phone number of the person who call me
<intent-filter>
<action
android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
1/How to check if the phone number receive is on my contact list ?
Do you have a tip to know if this phone number exist on contact list with out loading contact list ?
I don't want more information, just if this phone number exist.
2/if it's not possible, and i must load contact list, how to do it on BroadcastReceiver ?
When i try to do getContentResolver, it's not working because i'm on BroadcastReceiver and not inside Activity...
thanks for your help