我想把我的应用程序添加到手机应用程序列表中,就像truecaller那样,这样用户就可以从这个列表中选择我的应用程序。

请帮帮我。谢谢
编辑:这里是一篇文章添加短信应用程序到默认短信应用列表。https://android-developers.googleblog.com/2013/10/getting-your-sms-apps-ready-for-kitkat.html
我需要同样的文章为手机应用程序。
发布于 2018-06-14 12:15:55
<intent-filter>
<action android:name="android.intent.action.CALL_PRIVILEGED" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="tel" />
</intent-filter>注意:权限标签是允许打电话的。
<uses-permission android:name="android.permission.CALL_PHONE" />https://stackoverflow.com/questions/50857304
复制相似问题