1

嘿,我想知道是否有辦法知道召喚的內容提供商已經改變。我的意思是,如果我撥打電話,或者我接聽電話,它會返回一個「標誌」,表示已將新日誌添加到通話記錄或Android存儲有關通話的信息​​的位置。如何知道電話的內容提供商已經改變

因爲,當我撥打電話,Android的門店數量,聯繫人姓名(如果存在),調用,持續時間,等等等等,所有內容提供商的小時。那麼是否有一種方法可以捕獲這個「標誌」,表示內容提供者的調用更大,我的意思是一個新的數據已經被插入到內容提供者CallLog.Calls中。

(更新)

所以,我還有很多與此問題相關的疑問。我不知道在哪裏註冊內容觀察員。我的意圖是,當CallLog內容提供者發生變化時,將使用代碼的插入方法。

我的意思是,代碼不會做任何事情,除非新的數據已經被添加到CallLog內容提供商。如果某些數據已添加到CallLog內容提供程序中,則代碼將查詢新數據,然後插入。我想這樣做是因爲在內容觀察者應用程序將數據插入數據庫時​​,每次運行應用程序時都已經插入數據,知道了嗎?

因此,這裏是我的代碼。如果有人可以告訴我把registerContentObserver放在哪裏,其他所有東西都需要,我感謝你。

package com.psyhclo; 

import java.text.DateFormat; 
import java.util.ArrayList; 
import java.util.Date; 

import com.psyhclo.R; 
import com.psyhclo.CallDataHelper.OpenHelper; 

import android.app.Activity; 
import android.app.ListActivity; 
import android.database.ContentObserver; 
import android.database.Cursor; 
import android.database.sqlite.SQLiteDatabase; 
import android.os.Bundle; 
import android.os.Handler; 
import android.provider.ContactsContract.RawContacts; 
import android.util.Log; 
import android.view.View; 
import android.widget.AdapterView; 
import android.widget.ArrayAdapter; 
import android.widget.ListView; 
import android.widget.TextView; 
import android.widget.Toast; 
import android.content.ContentValues; 
import android.content.Context; 
import android.content.ContentProvider; 

public class RatedCalls extends ListActivity { 

private SQLiteDatabase db; 
private CallDataHelper dh = null; 
StringBuilder sb = new StringBuilder(); 
OpenHelper openHelper = new OpenHelper(RatedCalls.this); 

public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 

    Cursor cursor = getContentResolver().query(
      android.provider.CallLog.Calls.CONTENT_URI, null, null, null, 
      android.provider.CallLog.Calls.DATE + " DESC "); 

    dh = new CallDataHelper(this); 
    db = openHelper.getWritableDatabase(); 

    startManagingCursor(cursor); 
    int numberColumnId = cursor 
      .getColumnIndex(android.provider.CallLog.Calls.NUMBER); 
    int durationId = cursor 
      .getColumnIndex(android.provider.CallLog.Calls.DURATION); 
    int contactNameId = cursor 
      .getColumnIndex(android.provider.CallLog.Calls.CACHED_NAME); 
    int dateId = cursor.getColumnIndex(android.provider.CallLog.Calls.DATE); 
    int numTypeId = cursor 
      .getColumnIndex(android.provider.CallLog.Calls.CACHED_NUMBER_TYPE); 

    Date dt = new Date(); 
    int hours = dt.getHours(); 
    int minutes = dt.getMinutes(); 
    int seconds = dt.getSeconds(); 
    String currTime = hours + ":" + minutes + ":" + seconds; 

    ArrayList<String> callList = new ArrayList<String>(); 
    if (cursor.moveToFirst()) { 

     do { 

      String contactNumber = cursor.getString(numberColumnId); 
      String contactName = cursor.getString(contactNameId); 
      String duration = cursor.getString(durationId); 
      String callDate = DateFormat.getDateInstance().format(dateId); 
      String numType = cursor.getString(numTypeId); 

      ContentValues values = new ContentValues(); 

      values.put("contact_id", 1); 
      values.put("contact_name", contactName); 
      values.put("number_type", numType); 
      values.put("contact_number", contactNumber); 
      values.put("duration", duration); 
      values.put("date", callDate); 
      values.put("current_time", currTime); 
      values.put("cont", 1); 

      this.db.insert(CallDataHelper.TABLE_NAME, null, values); 

      Toast.makeText(getBaseContext(), "Inserted!", Toast.LENGTH_LONG); 
      callList.add("Contact Number: " + contactNumber 
        + "\nContact Name: " + contactName + "\nDuration: " 
        + duration + "\nDate: " + callDate); 

     } while (cursor.moveToNext()); 
    } 
    setListAdapter(new ArrayAdapter<String>(this, R.layout.listitem, 
      callList)); 
    ListView lv = getListView(); 
    lv.setTextFilterEnabled(true); 

    lv.setOnItemClickListener(new android.widget.AdapterView.OnItemClickListener() { 

     @Override 
     public void onItemClick(AdapterView<?> parent, View view, 
       int position, long id) { 

      Toast.makeText(getApplicationContext(), 
        ((TextView) view).getText(), Toast.LENGTH_SHORT).show(); 

     } 
    }); 
} 
} 

回答