This sample illustrate the use of the news Xml Adapters definition, as well as the use on the new XmlDocumentProvider class. Change-Id: Ie9738b5f0a0f00df2af643890a48573bace19311
31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2010 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<cursor-adapter xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:uri="content://com.android.contacts/contacts"
|
|
android:selection="has_phone_number=1"
|
|
android:layout="@layout/contact_item">
|
|
|
|
<bind android:from="display_name" android:to="@id/name" android:as="string" />
|
|
<bind android:from="starred" android:to="@id/star" android:as="drawable">
|
|
<map android:fromValue="0" android:toValue="@android:drawable/star_big_off" />
|
|
<map android:fromValue="1" android:toValue="@android:drawable/star_big_on" />
|
|
</bind>
|
|
<bind android:from="_id" android:to="@id/name"
|
|
android:as="com.example.android.xmladapters.ContactPhotoBinder" />
|
|
|
|
</cursor-adapter>
|