若要实现对系统联系人的增删改查,需要使用的系统ContentProvider的Uri为( )。
A. Contacts.Photos.CONTENT_URI
B. Contacts.People.CONTENT_URI
Contacts.Phones.CONTENT_URI
D. Media.EXTERNAL_CONTENT_URI
查看答案
在Activity中,获得ContentResolver对象的方法是( )
A. getContentResolver()
B. getResolver()
C. getContentResolvers()
D. getResolvers()
在下列选项中,关于ContentResolver的说法错误的是()
A. ContentResolver通过uri匹配到内容提供者
B. 通过ContentResolver可以在其它应用程序中访问内容提供者
ContentResolver的增删改查方法与目标内容提供者的增删改查方法是一一对应
D. ContentResolver不需要通过uri匹配到内容提供者
如果要调用现成的 ContentProvider,获得如下( )对象才能调用其方法进行增删查改。
A. CursorLoader
B. ContentResolver
Cursor
D. ContentProvider
对于SharedPreferences的下面正确的是
A. SharedPreferences pref = new SharedPreferences()
B. Editor editor = new Editor()
C. Editor对象存储数据最后都要调用commit()方法
D. SharedPreferences对象用于读取和存储常用数据类型