新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > Android組件之自定義ContentProvider

Android組件之自定義ContentProvider

作者: 時(shí)間:2016-09-12 來源:網(wǎng)絡(luò) 收藏

Uri uri = Uri

本文引用地址:http://butianyuan.cn/article/201609/304417.htm

.parse(content://com.example.googlecontentprovider.MyContentProvider/book/delete);

ContentResolver resolver = getContext().getContentResolver();

String where = id=?;

String[] argString = {10};

int count = resolver.delete(uri, where, argString);

Log.i(BookCase, 刪除了 + count + 行);

查詢所有的數(shù)據(jù):

public void bookQuery() {

Uri uri = Uri

.parse(content://com.example.googlecontentprovider.MyContentProvider/book/query);

ContentResolver resolver = getContext().getContentResolver();

Cursor cursor=resolver.query(uri, new String[]{id,Name,Title}, null, null, null);

if (cursor.getCount()>0) { String titleString=cursor.getString(cursor.getColumnIndex(Title));

Log.i(BookCase, id+---+nameString+---+titleString);

}

}

}


上一頁 1 2 下一頁

關(guān)鍵詞:

評論


相關(guān)推薦

技術(shù)專區(qū)

關(guān)閉