Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想写一个发送消息的应用程序。 我如何告诉 Android 操作系统,当用户要求发送消息 (sms) 时,给他我的应用程序作为替代? 我知道 viber 和 whatsapp 会做这样的事情。我没有找到文档。可能我错过了一些东西。
您是否已将 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>