This work fine..
Intent intent = new Intent(Intent.ACTION_PICK, Uri.parse("content://contacts"));
intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_TYPE);
startActivity(intent);
But, when i try this..
Intent intent = new Intent(Intent.ACTION_PICK, Uri.parse("content://sms/inbox"));
intent.setType(Telephony.Sms.Inbox.PERSON);
startActivity(intent);
i got this error..
E/InputEventReceiver: Exception dispatching input event.
E/MessageQueue-JNI: Exception in MessageQueue callback: handleReceiveCallback
E/MessageQueue-JNI: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK typ=person }
is there actually a SMS Picker? because i don't want to load all the message to my app, i just want to pick it directly from android default sms app.. please help.. thx..