摘要:
1. 读写短信 示例代码均需要先获得读写短信的权限 读取短信代码public void click(View view){ //1.利用内容提供者 中间人 获取用户的短信数据. ContentResolver resolver = getContentResolver(); Uri uri = Uri.parse("content://sms/"); //根据分析 代表的是所有的短信的路径 Cursor cursor = resolver.query(uri, new String[]{"address","date","b 阅读全文
摘要:
http://os.51cto.com/art/200905/126051.htm用adb直接查看log: adb logcat 清除之前的log: adb logcat -c 加过滤查看log(查看错误信息,异常就在这里): adb logcat -s *:E将log输出到sdcard: adb logcat -f /sdcard/xxx.loglogcat是Android中一个命令行工具,可以用于得到程序的log信息。logcat使用方法如下所示:logcat [options] [filterspecs]logcat的选项包括:-s 设置过滤器,例如指定 "*:s"- 阅读全文