ContentObserver 의 기본 사용

ContentObserver 는 디자인 모드 의 관찰자 모드 와 유사 하 게 사용 되 며, ContentObserver 는 관찰자 이 고, 관찰 된 ContentProvider 는 피 관찰자 이다.피 관찰자 인 ContentProvider 의 데이터 가 첨삭 되 고 개 선 된 변화 가 발생 하면 즉시 ContentProvider, ContentObsserver 에 해당 하 는 처 리 를 하도록 통지 할 것 이다.
package com.example.android_contentobserver;

import android.app.Activity;
import android.database.ContentObserver;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.os.Handler;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		
		//     Observser
		this.getContentResolver().registerContentObserver(Uri.parse("content://sms"),true,new SMSObserver(new Handler()));

	}

	private final class SMSObserver extends ContentObserver {

		public SMSObserver(Handler handler) {
			super(handler);

		}

	
		@Override
		public void onChange(boolean selfChange) {

			Cursor cursor = MainActivity.this.getContentResolver().query(
					Uri.parse("content://sms/inbox"), null, null, null, null);

			while (cursor.moveToNext()) {
				StringBuilder sb = new StringBuilder();

				sb.append("address=").append(
						cursor.getString(cursor.getColumnIndex("address")));

				sb.append(";subject=").append(
						cursor.getString(cursor.getColumnIndex("subject")));

				sb.append(";body=").append(
						cursor.getString(cursor.getColumnIndex("body")));

				sb.append(";time=").append(
						cursor.getLong(cursor.getColumnIndex("date")));

				System.out.println("--------has Receivered SMS::" + sb.toString());

				
			}

		}

	}
}

좋은 웹페이지 즐겨찾기