Consensus on Uri.parse("content://sms");
What is the consensus on parsing the Uri of sms messages for use with a cursor. There has to be a cross phone compatible way of getting access to sms messages.
There's nothing in the sdk for som开发者_如何转开发ething like this?
What about this as a Uri string: ("vnd.android-dir/mms-sms");
Check out the source for SMSPopup
Cursor c = getContentResolver().query(Uri.parse("content://sms"),
projection, null, null, null);
精彩评论