這項工作很好..有一個像Pick Picker Android的SMS Picker?
Intent intent = new Intent(Intent.ACTION_PICK, Uri.parse("content://contacts"));
intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_TYPE);
startActivity(intent);
但是,當我嘗試這個..
Intent intent = new Intent(Intent.ACTION_PICK, Uri.parse("content://sms/inbox"));
intent.setType(Telephony.Sms.Inbox.PERSON);
startActivity(intent);
我得到這個錯誤..
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 }
是有實際短信選取器? ,因爲我不希望加載的所有消息,我的應用程序,我只是想直接從Android的默認短信應用挑吧.. 請幫助.. THX ..
「實際上是否有短信選取器?」 - 不,沒有。 –
@MikeM。因爲我的客戶端有6000sms,它使應用程序凍結/強制關閉..所以我認爲這將是最好的,如果他可以直接從默認的Android短信應用程序選擇信息.. btw ..對於這樣的情況下,任何最好的解決方案做到這一點? .. thx .. – Riky
沒有選擇器可用。你實際上想要達到的目標是想閱讀郵件還是想在郵件應用內發送一些文本? – Avi