摘要:
Android提供了很多查询系统数据的Uri,这里是一些关于MMS,SMS常用的Uri以及对其的一些分析Uri:content://smssql语句:SELECT * FROM sms WHERE ({where}) ORDER BY date DESC可用列:_id:thread_id:address:person:date:protocol:read:status:type:reply_path_present:subject:body:service_center:locked:error_code:seen:Uri:content://mmssql语句:SELECT * FROM pd 阅读全文
摘要:
以下是常用到的Intent的URI及其示例,包含了大部分应用中用到的共用Intent一、打开一个网页,类别是Intent.ACTION_VIEW 1 2 Uri uri = Uri.parse("http://www.android-study.com/"); Intent intent =newIntent(Intent... 阅读全文