Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
240 views
in Technique[技术] by (71.8m points)

android - SMS receive with no notification

I want to receive a sms in my app, but I don't want my Android to show a notification about that event. Algorithm:

  1. Receive sms (it's ok)

  2. If this is a sms with special content-format (for my app) - process it with my app and don't display a notification.

  3. If this is a simple message - I don't want to process it, so a notification must be displayed.

I tried to use an ordered broadcast, but it doesn't help. Somewhere I read that SMS_RECEIVE's broadcast is not ordered, but I saw some apps, which can receive SMS without notify.

Does anyone can help me or show me the right way to solve this problem?

Calling abortBroadcast() in broadcast doesn't help

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

set priority in your intent-filter // in manifest

<intent-filter android:priority="100">  /*your receiver get high priority*/

// in broadcast receiver

 if (keyword_match)
      {
        // Stop it being passed to the main Messaging inbox
        abortBroadcast();
      }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...