How to open SMS setting Activity in our application?

ⅰ亾dé卋堺 提交于 2019-12-04 06:16:22

问题


In following code I only able to open compose SMS.....

I want to open SMS setting activity without option menu is pressed..

`String SMS_MIME_TYPE = "vnd.android-dir/mms-sms";

    Intent defineIntent = new Intent(Intent.ACTION_MAIN);                

    defineIntent.setType(SMS_MIME_TYPE);`

回答1:


There is nothing in the Android SDK for this.

You are welcome to contact the developers of each of the hundreds of SMS clients, asking them if they have a documented and supported means of launching their settings activity from outside their app. The app in the Android open source project does not have such a means -- that app's Settings activity can only be opened by the app itself, not by third parties.



来源:https://stackoverflow.com/questions/10414854/how-to-open-sms-setting-activity-in-our-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!