Last sent SMS/text message: how to retrieve via ContentObserver?

余生长醉 提交于 2019-12-05 07:02:38

问题


I know that there are some questions around and I've been through them all, I guess.

My carrier is kind enough to offer 50 free SMS each month. Now I would like to make myself a little counter that runs in the background and notifies me whenever I reach that limit. (Yes, I am aware that there will already be apps for this). Therefore, I would like a service to be notified whenever an SMS/test msg is sent. So the way to go would be a ContentObserver. I set one up (2) and register it like that (1):

(1)
Uri URI = Uri.parse("content://sms/sent");
String[] columns = {"_id", "date"};
Cursor c = context.getContentResolver().query(URI, columns, "type=?", new String[]{"1"}, "_id DESC");
Observer observer = new Observer(context);
c.registerContentObserver(observer);

(2)
private class Observer extends ContentObserver {
    Context context;
    public Observer(Context context) {
        super(null);
        this.context = context;
    }
    @Override
    public void onChange(boolean selfChange) {
        super.onChange(selfChange);
        // some code here
    }
}

After countless attempts of messing I have to admit to myself I am plain unable to make the onChange() only go off when an SMS is sent. Instead, it goes off upon incoming SMS as well.

So can anyone help me out on this? Sure, I could write all outgoing SMS to a DB and query to find out if the current SMS already exists but that does seem like an untidy solution and I'd like to do differently.

Thanks in advance,
steff

来源:https://stackoverflow.com/questions/4567003/last-sent-sms-text-message-how-to-retrieve-via-contentobserver

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!