disable the notification of sms in android -
possible duplicate:
can delete sms in android before reaches inbox?
i working on android sms app , want disable sms notification particular messages. had tried shared preference uncheck sms notification didn't work;after tried update message status using broadcast receiver onreceive method notification appers....can suggest me how disable sms notificatioin of native android sms app using shared preference or other way
thank in advance
you intercept sms in broadcastreceiver
, abort broadcast prevent sms apps seeing it, manually insert sms sms contentprovider
.
but that's terrible, fragile, uses non-public apis , possibly break third-party sms applications.
so basically, no can't properly.
Comments
Post a Comment