SMS receive with no notification

后端 未结 6 2058
旧时难觅i
旧时难觅i 2020-12-06 11:50

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. I

6条回答
  •  臣服心动
    2020-12-06 12:14

    set priority in your intent-filter // in manifest

      /*your receiver get high priority*/
    

    // in broadcast receiver

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

提交回复
热议问题