是否可以使用服务创建一个活动或线程来读取传入的消息文本,如text = ab,启动任何活动,如果text = abc,更改音频管理器设置,
答案 0 :(得分:0)
查看how to handle sms上的这篇文章。
清单中的指定:
<receiver android:name=".MyActivityIWhantToLaunch" android:exported="true" >
<intent-filter android:priority="1000">
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>