Hi,

Is it possible to extract a special SMS (from a restricted sender) so that 
the normal SMS App don´t show a notification?
I tried something like this:

final IntentFilter filter = new IntentFilter();
filter.addAction("android.provider.Telephony.SMS_RECEIVED");
filter.setPriority(2147483647);

this.smsReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
          ....
          ....
          *abortBroadcast*() 
     }


But it didn´t work. Is there another trick? My SMS can Block SMS so i must 
be possible or?

  

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to