2013年7月8日

Android API之android.provider.ContactsContract.RawContacts

摘要: android.provider.ContactsContract.RawContactsConstants for the raw contacts table, which contains one row of contact information for each person in each synced account. Sync adapters and contact management apps are the primary consumers of this API.AggregationAs soon as a raw contact is inserted or 阅读全文

posted @ 2013-07-08 23:02 勤修 阅读(1033) 评论(0) 推荐(0) 编辑

Android API之android.provider.ContactsContract.Data

摘要: android.provider.ContactsContract.Data Constants for the data table, which contains data points tied to a raw contact. Each row of the data table is typically used to store a single piece of cont... 阅读全文

posted @ 2013-07-08 23:00 勤修 阅读(1351) 评论(0) 推荐(0) 编辑

Android API之android.provider.ContactsContract

摘要: android.provider.ContactsContract ContactsContract是联系人provider和app的contract。定义了已支持的URL和column。取代了之前的Contacts。 Overview ContactsContract定义了有关联系人信息的可扩展的数据库。Contact信息保存为三层数据模型: 1. Data表保存了任何类型的个... 阅读全文

posted @ 2013-07-08 19:08 勤修 阅读(601) 评论(0) 推荐(0) 编辑

Android API之android.provider.ContactsContract.Contacts

摘要: android.provider.ContactsContract.Contacts 对应contacts数据表。RawContacts的一个聚合(aggregate)代表同一个人。每个人在数据表contacts中有一个记录。 Operations Insert Contact不能直接/显式创建。插入一个RawContact时,provider首先查找是否存在一个Contact表示同... 阅读全文

posted @ 2013-07-08 18:20 勤修 阅读(3477) 评论(0) 推荐(0) 编辑

Android API之android.os.Parcelable

摘要: android.os.Parcelable Interface for classes whose instances can be written to and restored from a Parcel. Classes implementing the Parcelable interface must also have a static field called CREATOR... 阅读全文

posted @ 2013-07-08 15:17 勤修 阅读(2690) 评论(0) 推荐(0) 编辑

Android网络开发之基本介绍

摘要: Android平台浏览器采用WebKit引擎,名为ChormeLite,拥有强大扩展特性,每个开发者都可以编写自己的插件。 目前,Android平台有3种网络接口可以使用,分别是:java.net, org.apache, android.net. 1. 使用标准Java接口(java.net.*)连接网络 java.net.* 提供与联网有关的类,包括流和数据包套接字、Internet协议... 阅读全文

posted @ 2013-07-08 00:18 勤修 阅读(651) 评论(0) 推荐(0) 编辑

导航