android - How to open phone default SMS inbox using cordova? -
i have created application in phonegap, need open default sms inbox on click on inbox icon showing counter unread sms. need open phone default inbox on click on notification icon. have tried many code , found can opencomposer , sent box not inbox.
one solution open phone sms inbox :
intent intent = new intent(intent.action_main); intent.addcategory(intent.category_launcher); intent.setclassname("com.android.mms", "com.android.mms.ui.conversationlist");
working me.
Comments
Post a Comment