在this thread中,用户想要Intent
启动短信应用。
我试图将我的应用设置为接收此请求,以便在可选择的应用中显示以发送短信。
该应用已经运作良好,我只是错过了这一部分。
我已经尝试了上述线程中的一些答案来测试我所做的是否有效,但不幸的是没有效果。
在我的清单中,我将此设置为我的对话活动。
<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>
任何形式的帮助都会非常感激。 提前谢谢。