0

我想写一个发送消息的应用程序。
我如何告诉 Android 操作系统,当用户要求发送消息 (sms) 时,给他我的应用程序作为替代?
我知道 viber 和 whatsapp 会做这样的事情。我没有找到文档。可能我错过了一些东西。

4

1 回答 1

2

您是否已将 SMS 发送到意图过滤器添加到清单中?

 <intent-filter>
    <category android:name="android.intent.category.DEFAULT"/>
    <action android:name="android.intent.action.SENDTO"/>
    <data android:scheme="smsto"/>
    <data android:scheme="sms"/>
 </intent-filter>
于 2012-05-20T21:27:45.810 回答