我们能在手机短信到达收件箱之前删除它吗?我正在从收件箱中删除一条短信,但我想知道:如何在它到达收件箱之前删除它?
3 回答
慕尼黑5688855
TA贡献1848条经验 获得超2个赞
第1步:
public class SMSReceiver extends BroadcastReceiver{ public void onReceive(Context context, Intent intent) { if(conditionMatches){ abortBroadcast(); } }}
第二步
<receiver android:name=".SMSReceiver" > <intent-filter android:priority="1000"> <action android:name="android.provider.Telephony.SMS_RECEIVED" /> </intent-filter> </receiver>
就这样
以上代码是如何工作的?
人到中年有点甜
TA贡献1895条经验 获得超7个赞
- 3 回答
- 0 关注
- 188 浏览
添加回答
举报
0/150
提交
取消