内容提供者不与SqliteDatabase同步

我有2个活动。

ActivityA通过Content Provider访问数据库,并启动ActivityB

ActivityB直接访问数据库。

我发现后ActivityB更新数据库, ActivityA通过CP查询数据库,结果将不会更新。

但数据库实际上已更新!

如何同步这两种方法?

PS: ActivityAActivityB在不同的应用程序中。


内容提供商在您作为礼节性来电更新时NotifyChange这是为了通知内容提供商的订阅者内容已更改。

活动A需要通过URI访问内容提供者并注册一个内容观察者。 活动B需要使用基于行的URI调用NotifyChange,以便观察者能够接收到基于行的URI。 一切都取决于用于访问contentprovider的URI。 这给出了实时更改bA。 B变化>>> A接收变化,并可以对它们做些什么。

Content Provider中行和列级别观察的通知/事件

在ViewPager中重新加载或通知Fragment的数据

内容提供者更新


**数据库**

  @Override
public void onCreate(SQLiteDatabase db) {
    // TODO Auto-generated method stub


    db.execSQL("CREATE TABLE " + TABLE_NAME
            + "(ID INTEGER PRIMARY KEY AUTOINCREMENT, " + key_msg + " STRING, " + key_isread + " STRING)");


}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    // TODO Auto-generated method stub
    db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
    onCreate(db);
}

// ************************* -------插入GCM消息--------- **** ********************** //

public void insert_GCM_receive_data(String msg) {

    String value;
    SQLiteDatabase db = getWritableDatabase();

    ContentValues cv = new ContentValues();

    cv.put(key_msg, msg);
    cv.put(key_isread, "N");

    value = cv.toString();

    db.insert(TABLE_NAME, null, cv);
    System.out.println("/n******this is temp table name  " + TABLE_NAME + "nthis is temp msg  " + cv + "nmsg" + msg + "nval" + value);

    db.close();

}

// ------------------------------------------------ ----------------------------------- //

// ********************** ---------- GET ALERT DATA ------------ * ************************* // public ArrayList get_alert_msg(){

    ArrayList<String> name = new ArrayList<String>();
    try {
        SQLiteDatabase db = getWritableDatabase();
        Cursor c = null;
        c = db.rawQuery("SELECT  * FROM " + TABLE_NAME, null);

        System.out.println(c);

        for (c.moveToFirst(); !c.isAfterLast(); c.moveToNext()) {

            String str_id = c.getString(0);
            String str_msg = c.getString(1);
            String str_read = c.getString(2);
            Log.e("value", str_id + str_msg + str_read);

            HashMap<String, String> hm = new HashMap<String, String>();
            hm.put("msg", str_msg);
            hm.put("isread", str_read);


            name.add(str_msg);


        }
        c.close();
        db.close();

    } catch (Exception e) {
        Log.e("this not work", "" + e);
    }

    return name;
}

//调用2中的方法activity dbHelper.get_alert_msg(); ....

在数据库类中使用数据操作和检索操作...在检索数据后关闭数据库。 使用通用的数据库方法来进行两项活动..我希望这可以帮助你..


确保在使用更新完成活动b时,在游标或db助手上调用close()

链接地址: http://www.djcxy.com/p/37783.html

上一篇: Content Provider not Sync with SqliteDatabase

下一篇: Why is pandas '==' different than '.eq()'