Android使用ContentObserver監聽資料庫變化

來源:互聯網
上載者:User

最近有個朋友問了我如何接受指定號碼的簡訊,並且不讓系統截取到通知使用者。真好前端時間看天朝group,也有個朋友問了這個問題,而且通過 ContentObserver方式解決了。我這裡就把我實現的代碼貼出來,以便需要的朋友參考。

監聽相應的URI的ContentProvider就可以,在OnChange實現你想做的事情或者發廣播等。

[java]
view plaincopy
  1. public class ScreenTest extends Activity {  
  2.     class SmsContent extends ContentObserver {  
  3.         private Cursor cursor = null;  
  4.         public SmsContent(Handler handler) {  
  5.             super(handler);  
  6.         }  
  7.   
  8.         /** 
  9.          * @Description 當簡訊表發送改變時,調用該方法 
  10.          * 需要兩種許可權 
  11.          * android.permission.READ_SMS 讀取簡訊 
  12.          * android.permission.WRITE_SMS 寫簡訊 
  13.          * @Author Snake 
  14.          * @Date 2010-1-12 
  15.          */  
  16.         @Override  
  17.         public void onChange(boolean selfChange) {  
  18.             // TODO Auto-generated method stub  
  19.             super.onChange(selfChange);  
  20.             // 讀取收件匣中指定號碼的簡訊  
  21.             cursor = managedQuery(Uri.parse("content://sms/inbox"), new String[]{"_id", "address", "read"}, " address=? and read=?", new String[]{"12345678901", "0"}, "date desc");  
  22.             if (cursor != null) {  
  23.                 ContentValues values = new ContentValues();  
  24.                 values.put("read", "1"); //修改簡訊為已讀模式  
  25.                 cursor.moveToFirst();  
  26.                 while (cursor.isLast()){  
  27.                     //更新當前未讀簡訊狀態為已讀  
  28.                     getContentResolver().update(Uri.parse("content://sms/inbox"), values, " _id=?", new String[]{""+cursor.getInt(0)});  
  29.                     cursor.moveToNext();  
  30.                 }  
  31.             }  
  32.         }  
  33.     }  
  34.       
  35.     /** Called when the activity is first created. */  
  36.     @Override  
  37.     public void onCreate(Bundle savedInstanceState) {  
  38.         super.onCreate(savedInstanceState);  
  39.         setContentView(R.layout.main);  
  40.         SmsContent content = new SmsContent(new Handler());  
  41.         //註冊簡訊變化監聽  
  42.         this.getContentResolver().registerContentObserver(Uri.parse("content://sms/"), true, content);  
  43.     }  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.