java - Editing the table that stores sms on android -
java - Editing the table that stores sms on android -
i reading sms in android device using java
cursor cursor = getcontentresolver().query(uri.parse("content://sms/inbox"), null, null, null, null); cursor.movetofirst();
but need mark sms processed background service or not.will there danger in editing sqlite database table stores sms.
i add together column indicate has been processed or has not.
you can't modify info sms content provider since kitkat, see: http://developer.android.com/about/versions/kitkat.html#44-sms-provider
so not recommended want.
java android
Comments
Post a Comment