編輯:Android開發實例
Java核心代碼:
public String getSmsInPhone() { final String SMS_URI_ALL = "content://sms/"; final String SMS_URI_INBOX = "content://sms/inbox"; final String SMS_URI_SEND = "content://sms/sent"; final String SMS_URI_DRAFT = "content://sms/draft"; StringBuilder smsBuilder = new StringBuilder(); try{ ContentResolver cr = getContentResolver(); String[] projection = new String[]{"_id", "address", "person", "body", "date", "type"}; Uri uri = Uri.parse(SMS_URI_ALL); Cursor cur = cr.query(uri, projection, null, null, "date desc"); if (cur.moveToFirst()) { String name; String phoneNumber; String smsbody; String date; String type; int nameColumn = cur.getColumnIndex("person"); int phoneNumberColumn = cur.getColumnIndex("address"); int smsbodyColumn = cur.getColumnIndex("body"); int dateColumn = cur.getColumnIndex("date"); int typeColumn = cur.getColumnIndex("type"); do{ name = cur.getString(nameColumn); phoneNumber = cur.getString(phoneNumberColumn); smsbody = cur.getString(smsbodyColumn); SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd hh:mm:ss"); Date d = new Date(Long.parseLong(cur.getString(dateColumn))); date = dateFormat.format(d); int typeId = cur.getInt(typeColumn); if(typeId == 1){ type = "接收"; } else if(typeId == 2){ type = "發送"; } else { type = ""; } smsBuilder.append("["); smsBuilder.append(name+","); smsBuilder.append(phoneNumber+","); smsBuilder.append(smsbody+","); smsBuilder.append(date+","); smsBuilder.append(type); smsBuilder.append("] "); if(smsbody == null) smsbody = ""; }while(cur.moveToNext()); } else { smsBuilder.append("no result!"); } smsBuilder.append("getSmsInPhone has executed!"); } catch(SQLiteException ex) { Log.d("SQLiteException in getSmsInPhone", ex.getMessage()); } return smsBuilder.toString(); }
注釋:
1、本函數用於獲取手機中所有的短信,包括收件箱、發件箱、草稿箱等。
2、本函數可以運行在Service子類中,因為未使用Activity類的相關函數。
3、獲取的短信包括:收發短信人名、手機號碼、短信內容、短信發送接收的時間、短信的類型。
sms主要結構:
_id:短信序號,如100
thread_id:對話的序號,如100,與同一個手機號互發的短信,其序號是相同的
address:發件人地址,即手機號,如+8613811810000
person:發件人,如果發件人在通訊錄中則為具體姓名,陌生人為null
date:日期,long型,如1256539465022,可以對日期顯示格式進行設置
protocol:協議0SMS_RPOTO短信,1MMS_PROTO彩信
read:是否閱讀0未讀,1已讀
status:短信狀態-1接收,0complete,64pending,128failed
type:短信類型1是接收到的,2是已發出
body:短信具體內容
service_center:短信服務中心號碼編號,如+8613800755500
4、為了獲取短信,需要在AndroidManifest.xml文件中添加權限使用說明,如下:
<uses-permissionandroid:name="android.permission.READ_SMS"/>
5、本函數在真機上測試通過。
登錄應用程序的屏幕,詢問憑據登錄到一些特定的應用。可能需要登錄到Facebook,微博等本章介紹了,如何創建一個登錄界面,以及如何管理安全問題和錯誤嘗試。首先,必須定義兩
本文實例講述了Android編程根據系列圖片繪制動畫的方法。分享給大家供大家參考,具體如下: 一、采用系統提供的Animation類,用自帶的方法 其中的ani
登錄應用程序的屏幕,詢問憑據登錄到一些特定的應用。可能需要登錄到Facebook,微博等本章介紹了,如何創建一個登錄界面,以及如何管理安全問題和錯誤嘗試。首先,必須定義兩
本文實例講述了Android編程實現的重力感應效果。分享給大家供大家參考,具體如下: android中的很多游戲的游戲都使用了重力感應的技術,就研究了一下重力感應