我只是想了解 android 服务和内容观察者。
因此,我尝试了一个程序,在该程序中,我的活动启动了一项服务,并在服务中注册到 CONTACTS URI,以便在联系人数据库更改时得到通知。
我朗读我的程序,我可以看到这个服务出现在应用程序 -> 运行服务下。现在我尝试添加一个联系人,我的观察者收到通知。如果我再次编辑联系人,它不会收到通知。如果我编辑联系人,这只是在运行我的程序后第一次,内容观察者会收到通知请在下面查看我的代码详细信息
启动服务的主要活动:
public class ContactChangeOberverServiceActivity extends Activity {
/** Called when the activity is first created. */
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Log.i("Start","Service");
startService(new Intent(this, MyService.class));
}
}
服务 :
public class MyService extends Service {
private static final String TAG = "MyService";
@Override
public void onCreate() {
Toast.makeText(this, "My Service Created", Toast.LENGTH_LONG).show();
Log.d(TAG, "onCreate");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d(TAG, "onStart");
ContactObserverActivity observer = new ContactObserverActivity(new Handler());
observer.register(getApplicationContext());
return super.onStartCommand(intent, flags, startId);
}
public boolean deliverSelfNotifications() {
return true;
}
}
观察者是:
@Override
public void onChange(boolean selfChange) {
// TODO Auto-generated method stub
// super.onChange(selfChange);
Log.e(TAG, "Onchange Called");
//MainActivity.takeContactBackup();
Intent intent = new Intent (ctx,ContactsExtractorActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
ctx.startActivity(intent);
}
/ TODO Auto-generated constructor stub
}
public void register(Context ctx) {
Log.e(TAG, "Registering");
this.ctx = ctx;
curval = ctx.getContentResolver().query(
ContactsContract.Contacts.CONTENT_URI, projection, null, null,
null);
curval.registerContentObserver(new ContactObserverActivity(
new Handler()));
Log.e(TAG, "Registered");
}
请帮助我了解此行为及其修复方法。谢谢。