其他分享
首页 > 其他分享> > 如何在Android中使用标签

如何在Android中使用标签

作者:互联网

我需要知道如何在android xml文件中使用布局标签.我知道它用于数据绑定,但是我对此并不完全了解.请让我知道是否有人可以帮助我.

提前致谢 !!

解决方法:

< layout>使用DataBinding时,标记必须是根标记.这样做是告诉编译器您正在使用DataBinding,并且您的布局将具有特殊标签,例如< variable>或< import&gt ;,因此您必须将布局嵌入该标签中. 简而言之,您需要使用< layout>每当您使用DataBinding让编译器了解特殊标记并使用正确的变量和方法生成DataBinding类时,就使用标记.

如果您具有这样的布局(layout_data_binding.xml):

<layout xmlns:android="http://schemas.android.com/apk/res/android">
   <data>
       <variable name="user" type="com.example.User"/>
   </data>
   <LinearLayout
       android:orientation="vertical"
       android:layout_width="match_parent"
       android:layout_height="match_parent">
       <TextView android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:text="@{user.firstName}"/>
       <TextView android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:text="@{user.lastName}"/>
   </LinearLayout>
</layout>

它基于< layout>内部的内容.标签,以使用User变量及其getter和setter创建LayoutDataBinding类(自动生成).

标签:android,xml,layout,android-databinding
来源: https://codeday.me/bug/20191010/1887812.html