在我的应用程序中,我正在使用适配器。 我来到这里。 实际上我需要显示 xml / filename.xml ,如下所示。
我想显示如下代码。
我已经手动完成了这个,但有任何方法,比如我们称之为布局。
xml >layout> filename.xml
并显示
如何将这样的编码转换成xml文件到res / xml /..?
<cursor-adapter xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.example.android.xmladapters"
app:uri="content://com.android.contacts/contacts"
app:selection="has_phone_number=1"
app:layout="@layout/contact_item">
<bind app:from="display_name" app:to="@id/name" app:as="string" />
<bind app:from="starred" app:to="@id/star" app:as="drawable">
<map app:fromValue="0" app:toValue="@android:drawable/star_big_off" />
<map app:fromValue="1" app:toValue="@android:drawable/star_big_on" />
</bind>
<bind app:from="_id" app:to="@id/name" app:as="com.example.android.xmladapters.ContactPhotoBinder" />
</cursor-adapter>