访问内容提供者

短线的内容提供者的访问地址:content://sms/


Mainfest.xml 中:

 <instrumentation 

        android:name="android.test.InstrumentationTestRunner"
        android:targetPackage="com.xh.tx.contentresolver"
        ></instrumentation>
    
    <uses-permission android:name="aaa.bbb.ccc"/>
    <uses-permission android:name="aaa.bbb.ccc.ddd"/>




public void testInsert()
{
//访问地址:content://com.xh.tx.contentprivoder.PersonContentPrivoder/person/insert

ContentResolver resolver = getContext().getContentResolver(); //内容提供者的访问类

ContentValues values = new ContentValues();

values.put("name", "sz");
values.put("age", "20");

resolver.insert(Uri.parse("content://com.xh.tx.contentprivoder.PersonContentPrivoder/person/insert"), values);

你可能感兴趣的:(访问内容提供者)