黑马程序员-----安卓常用uri

content://com.android.contacts/contacts

对应数据库表中contacts表 用于获得联系人Id  关键字"_id"

content://com.android.contacts/contacts/"+ contactid+ "/data

对应data表  通过contactId来查找联系人的各项属性 (data1属性值 data2属性的类型(如家庭电话 手机)) 关键字 "mimetype","data1","data2"

"content://com.android.contacts/data/phones/filter/"+ number

通过手机号来查找联系人姓名 关键字"display_name"

content://com.android.contacts/raw_contacts

添加联系人

示例:

//添加姓名

values.put("raw_contact_id", contactid);

values.put("mimetype", "vnd.android.cursor.item/name");

values.put("data2", "张小小");

resolver.insert(uri, values);

//添加电话

values.clear();

values.put("raw_contact_id", contactid);

values.put("mimetype", "vnd.android.cursor.item/phone_v2");

values.put("data2", "2");

values.put("data1", "13671323507");

resolver.insert(uri, values);

//添加Email

values.clear();

values.put("raw_contact_id", contactid);

values.put("mimetype", "vnd.android.cursor.item/email_v2");

values.put("data2", "2");

values.put("data1", "[email protected]");

resolver.insert(uri, values);

package cn.itcast.test;

import java.util.ArrayList;

import android.content.ContentProviderOperation;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.ContentValues;
import android.database.Cursor;
import android.net.Uri;
import android.test.AndroidTestCase;
import android.util.Log;

public class ContactsTest extends AndroidTestCase {
	private static final String TAG = "ContactsTest";
	//获取所有联系人
	public void testContacts() throws Exception{
		Uri uri = Uri.parse(<strong>"content://com.android.contacts/contacts</strong>");
		ContentResolver resolver = getContext().getContentResolver();
		Cursor cursor = resolver.query(uri, new String[]{"_id"}, null, null, null);
		while(cursor<strong>.moveToNext()</strong>){
			int contactid = cursor.getInt(0);
			StringBuilder sb = new StringBuilder("contactid=");
			sb.append(contactid);
			uri = Uri.parse("<strong>content://com.android.contacts/contacts/"+ contactid+ "/data"</strong>);
			<span style="color:#ff0000;">//因为contacts中采用了关联查询 所以可以直接获得mimetype</span>
			Cursor datacursor = resolver.query(uri, new String[]{<strong>"mimetype","data1","data2"</strong>}, null, null, null);
			while(datacursor.<strong>moveToNext()</strong>){
				String data = datacursor.getString(datacursor.<strong>getColumnIndex</strong>("data1"));
				String type = datacursor.getString(datacursor.getColumnIndex("mimetype"));
				//mimetype表中对象的值
				if("vnd.android.cursor.item/name".equals(type)){//姓名
					sb.append(",name="+ data);
				}else if("vnd.android.cursor.item/email_v2".equals(type)){//email
					sb.append(",email="+ data);
				}else if("vnd.android.cursor.item/phone_v2".equals(type)){//phone
					sb.append(",phone="+ data);
				}
			}
			Log.i(TAG, sb.toString());
		}
	}
	<span style="color:#ff0000;">//根据号码获取联系人的姓名</span>
	public void testContactNameByNumber() throws Exception{
		String number = "18601025011";
		Uri uri = Uri.parse(<strong>"content://com.android.contacts/data/phones/filter/"+ number</strong>);
		ContentResolver resolver = getContext().getContentResolver();
		Cursor cursor = resolver.query(uri, new String[]{<strong>"display_name"</strong>}, null, null, null);
		if(cursor.moveToFirst()){
			String name = cursor.getString(0);
			Log.i(TAG, name);
		}
		cursor.close();
	}
	<span style="color:#ff0000;">//添加联系人</span>
	public void testAddContact() throws Exception{
		Uri uri = Uri.parse("content://com.android.contacts/raw_contacts");
		ContentResolver resolver = getContext().getContentResolver();
		ContentValues values = new ContentValues();
		//<strong><span style="color:#ff0000;">通过执行insert()空操作来返回一个contactId</span></strong>
		long contactid = ContentUris.parseId(resolver.insert(uri, values));
		uri = Uri.parse("content://com.android.contacts/data");
		//添加姓名
		values.put("raw_contact_id", contactid);
		values.put("mimetype", "vnd.android.cursor.item/name");
		values.put("data2", "张小小");
		resolver.<strong>insert(uri, values);</strong>
		//添加电话
		values.clear();
		values.put("raw_contact_id", contactid);
		values.put("mimetype", "vnd.android.cursor.item/phone_v2");
		values.put("data2", "2");
		values.put("data1", "13671323507");
		resolver.insert(uri, values);
		//添加Email
		values.clear();
		values.put("raw_contact_id", contactid);
		values.put("mimetype", "vnd.android.cursor.item/email_v2");
		values.put("data2", "2");
		values.put("data1", "[email protected]");
		resolver.insert(uri, values);
	}
	<span style="color:#ff0000;"><strong>//在同一个事务中完成联系人各项数据的添加</strong></span>
	public void testAddContact2() throws Exception{
		Uri uri = Uri.parse("content://com.android.contacts/raw_contacts");
		ContentResolver resolver = getContext().getContentResolver();
		ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
<span style="white-space:pre">	</span><strong><span style="color:#ff6666;">//第0次操作 往</span><span style="color: rgb(255, 102, 102); font-family: Arial, Helvetica, sans-serif;">raw_contacts表中插入一条数据</span></strong><span style="color: rgb(255, 102, 102); font-family: Arial, Helvetica, sans-serif;"><strong>	</strong>	</span>
<span style="font-family: Arial, Helvetica, sans-serif;"><span style="font-size:14px; white-space: pre;">			</span>     <span style="font-size:12px;">ContentProviderOperation op1 = ContentProviderOperation.newInsert(uri)</span></span><span style="color:#ff6666;font-size:14px;">
</span><span style="font-size:14px;">			.withValue("account_name", null)
			.build();
		operations.add(op1);

		uri = Uri.parse("content://com.android.contacts/data");
		ContentProviderOperation op2 = ContentProviderOperation.newInsert(uri)</span>
<span style="font-size:14px; white-space: pre;">			</span><strong><span style="color:#ff0000;">!!!!<span style="font-size:14px;">//根据第0次操作的返回id 作为</span><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px;">raw_contact_id字段的值</span><span style="font-family: Arial, Helvetica, sans-serif;"><span style="font-size:14px;">	</span></span></span></strong>
<span style="font-family: Arial, Helvetica, sans-serif;"><span style="font-size:12px;"><span style="white-space:pre">					</span><strong><span style="color:#ff0000;">.withValueBackReference("raw_contact_id", 0)</span></strong></span></span><span style="font-size:14px;">
</span><span style="font-size:14px;">			.withValue("mimetype", "vnd.android.cursor.item/name")
			.withValue("data2", "李小龙")
			.build();
		operations.add(op2);

		ContentProviderOperation op3 = ContentProviderOperation.newInsert(uri)
			.withValueBackReference("raw_contact_id", 0)
			.withValue("mimetype", "vnd.android.cursor.item/phone_v2")
			.withValue("data1", "13560650505")
			.withValue("data2", "2")
			.build();
		operations.add(op3);

		ContentProviderOperation op4 = ContentProviderOperation.newInsert(uri)
			.withValueBackReference("raw_contact_id", 0)
			.withValue("mimetype", "vnd.android.cursor.item/email_v2")
			.withValue("data1", "[email protected]")
			.withValue("data2", "2")
			.build();
		operations.add(op4);

		resolver.applyBatch("com.android.contacts", operations);
	}

}</span><strong style="font-size:14px;">
</strong>

withValueBackReference(String key,
int previousResult)方法

第一个参数key对应于数据库中的列名,第二个参数previousResult代表着:回引数据库批量操作中的第previousResult个数据库操作的返回值。

总的来说就是说把批量数据库操作中的第previousResult个数据库操作的返回值作为列名为key的记录的值

时间: 2024-10-23 21:20:13

黑马程序员-----安卓常用uri的相关文章

黑马程序员——OC常用类NSString/NSMutableString《Foundation框架中类》

------Java培训.Android培训.iOS培训..Net培训.期待与您交流! ------- NSString/NSMutableString:OC字符串处理核心类         NSString/NSMutableString是Foundation框架中的类,是Objective-C 中字符串处理的核心类.这两个类最大的区别:NSString 创建赋值以后,该类字符串除了重新被赋值,其的内容与长度不能动态的更改.NSMutableString 创建赋值以后可以动态更改其内容与长度.

黑马程序员_常用API总结

------- <a href="http://www.itheima.com" target="blank">android培训</a>.<a href="http://www.itheima.com" target="blank">java培训</a>.期待与您交流! ---------- 一.Object类: 1.所有引用数据类型的超类(数组.类库中的类.我们自定义的类) 

黑马程序员___常用英语单词汇总

property   性质,性能 synthesize   合成,综合 prefix   前缀,加掐最 package   包 interact   相互作用 summary    摘要 description   描述 definition   定义 indent   缩进 category   分类 load   加载 initialize   初始化 perform   执行,机器运转 character   字符 deallocate   解除分配 alloc   分配 instance

黑马程序员_学习IOS之字典常用的方法

字典是无序的 数组是有序的.字典分为:可变字典和不可变字典  不可变字典对象 NSDictionary * dict = [[NSDictionary alloc]initWithObjectsAndKeys:@"one",@"1",@"two",@"2",@"three",@"3",@"four",@"4", nil]; //value = ke

黑马程序员_Java异常 Java常用库类

Java异常 1,异常的基本概念 异常是导致程序中断运行的一种指令流,它是在运行时期发生的不正常的情况,在Java中,一切的异常都秉着面向对象的设计思想,所有的异常都是以对象和类的形式存在的. 2,异常类的继承结构 在整个Java的异常结构中,实际上有两个最常用的类,Exception和Error,这两个类分别是Throwable的子类 Exception:一般表示的是程序中出现的问题,可以直接使用try....catch处理 Error:一般之的是JVM的错误,程序中无法处理. 3,Java的

黑马程序员:从2016互联网大会数据,看PHP语言发展潜力

2016(第十五届)中国互联网大会于6.21-23日在北京国际会议中心召开.作为汇聚顶级专家,紧扣行业脉搏,聚焦热点趋势的深度权威大会,互联网大会不仅会分析中国互联网行业的发展趋势,也会聚焦互联网技术的发展. 此次互联网大会,回顾了2015年中国互联网的发展.据大会转载的CNNIC数据显示,中国网民人数已经达到了6.8826亿,普及率达到了50.3%,仅在2015年,网民新增就达到3951万人. 面对网民规模的持续扩大,PHP语言在会有什么样发展?黑马程序员会给大家带来最独到的见解! 中国网民规

黑马程序员——Java基础---IO(下)

黑马程序员——Java基础---IO(下) ------<a href="http://www.itheima.com" target="blank">Java培训.Android培训.iOS培训..Net培训</a>.期待与您交流! ------ 一.概述 Java除了基本的字节流.字符流之外,还提供了File类.properties类.打印流.序列流等和输入输出相关的类,它们能够帮助我们更好的处理信息.下面将对它们进行简单的介绍. 一.正

黑马程序员_API

------- android培训.java培训.期待与您交流! ---------- ======================API========================================= 看api的步骤: 1.看类的说明.其所属的包以及出现的版本. 2.看其构造函数. 3.看普通的方法.看时注意参数,和返回值类型. Object类 1. private static native void registerNatives (); 见到本地关键字修饰的方法,这个方

黑马程序员_集合

集合1.集合和对象数组的区别: 数组的长度不可变,集合的可变: 数组可以存储基本数据类型和对象,集合只能存储对象. 集合的框架图 集合派系的顶层接口Collection1.Collection集合存储对象的方法: add(E e)将元素存储到集合中 addAll(Collection c)将一个集合添加到另外的集合中2.Collection集合提取对象的方法: 通过迭代器iterator中的方法:hasNext()和next()来取出 Iterator it=new iterator(); wh