differentiate inbox and sentsms from all sms

冷暖自知 提交于 2019-12-01 01:46:44

You can use ContentObserver here to track sent and received message,

Override onChange() method of ContentObserver and get the sms type and work accordingly. Psuedo code can be as below.

Cursor cursor = mContext.getContentResolver().query(Uri
                             .parse("content://sms"), null, null, null, null);

String type = cursor.getColumnIndex("type");
if(cursor.getString(type).equalsIgnoreCase("1")){
    // sms received
 }
 else if(cursor.getString(type).equalsIgnoreCase("2")){
    //sms sent
 }

Registering ContentObserver for SMS,

ContentResolver observer = this.getContentResolver();
observer.registerContentObserver(Uri.parse("content://sms"), 
                               true, new MySMSObserver(new Handler(),this));

Where MySMSObserver will be your class extending ContentObserver with Constructor having argument as Handler and Context,

public MySMSObserver(Handler handler, Context context) {
        super(handler);
        this.context = context;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!