0
我想寫一個應用程序發送消息。
如何告訴Android操作系統,當用戶要求發送消息(短信)給他我的應用程序作爲替代?
我知道viber和whatsapp做這樣的事情。我沒有找到文件。可能我錯過了一些東西。如何註冊Android中的SmsManager
我想寫一個應用程序發送消息。
如何告訴Android操作系統,當用戶要求發送消息(短信)給他我的應用程序作爲替代?
我知道viber和whatsapp做這樣的事情。我沒有找到文件。可能我錯過了一些東西。如何註冊Android中的SmsManager
您是否已將短信發送至意向過濾器添加至您的清單?
<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>
這應該ANWER你的問題: http://stackoverflow.com/questions/4068910/android-intent-filter –