91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android開發——內容觀察者

發布時間:2020-07-16 00:07:03 來源:網絡 閱讀:437 作者:xiongbuaamao 欄目:移動開發

ContentObserver——內容觀察者,可以觀察特定uri的數據庫的變化,已達到監聽的目的,進而對數據庫的變化作出相應的反應。下面是一個監聽短信變化的應用。

public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Uri uri = Uri.parse("content://sms/");
        getContentResolver().registerContentObserver(uri, true, new SmsObserver(new Handler()));
    }
        
    public class SmsObserver extends ContentObserver{
        public SmsObserver(Handler handler) {
            super(handler);
        }
        //當短信數據庫發生改變時,觸發此方法
        @Override
        public void onChange(boolean selfChange) {
            System.out.println("您有新短信產生!");
            //獲取游標,對數據庫進行操作
            Cursor cursor = getContentResolver().query(Uri.parse("content://sms/outbox"), null, null, null, null);
            while(cursor.moveToNext()){
                StringBuilder sBuilder = new StringBuilder();
                sBuilder.append("id=").append(cursor.getInt(cursor.getColumnIndex("_id")));
                sBuilder.append(";address=").append(cursor.getString(cursor.getColumnIndex("address")));
                sBuilder.append(";body=").append(cursor.getString(cursor.getColumnIndex("body")));
                sBuilder.append(";time=").append(cursor.getString(cursor.getColumnIndex("date")));
                //Toast.makeText(MainActivity.this, sBuilder.toString(), Toast.LENGTH_LONG).show();
                String message = sBuilder.toString();
                System.out.println(message);
                TextView textView = (TextView) MainActivity.this.findViewById(R.id.tv_message);
                textView.setText("你有短信了\n"+message);
            }
            super.onChange(selfChange);
        }
            
            
            
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

夏河县| 内江市| 通化市| 宣恩县| 平泉县| 教育| 息烽县| 五寨县| 叙永县| 南汇区| 福州市| 安康市| 龙门县| 桐城市| 镇安县| 无极县| 武定县| 沧州市| 台中市| 恩平市| 合山市| 林周县| 饶平县| 宜良县| 平武县| 远安县| 三原县| 鄯善县| 敦煌市| 昆山市| 辽宁省| 乌兰察布市| 旬邑县| 新干县| 聊城市| 肇源县| 马尔康县| 大冶市| 长兴县| 靖边县| 炉霍县|