所以我在制作API19 +默认短信应用程序时遇到了很多困难。 SMS部分简单,文档清晰,清晰。但就MMS而言,网络是沉默的。
要成为Android上的默认短信应用,应用必须为短信和短信定义intent-filter
:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="sms" />
<data android:scheme="smsto" />
<data android:scheme="mms" />
<data android:scheme="mmsto" />
</intent-filter>
但是没有简单的方法来处理Android上的彩信,有很多挫折,一些设备已知不能与自定义彩信应用程序配合使用,所以我想避免这种情况并将所有与彩信相关的工作委托给另一个应用程序(原版) Android默认短信应用)。那可能吗?怎么样?
或者,您知道在Android API 19 +上发送和接收彩信的任何示例吗?
由于