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

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -