Android数据绑定:有没有显示/隐藏包含标签的好方法?



我刚刚开始在Android中搞乱数据绑定。理想情况下,我希望有一个包含一些通用 xml 元素的根 xml 文件,然后其内部内容可以是三个 xml 文件之一,如下所示

<data>
<variable name="action" type="com.example.android.action"/>
</data>
<TextView>
<TextView>
<!--Only show one of these includes based on the binding data-->
<!-- if action.item -->
<include layout="item.xml"
bind:item="@{action.item}">
<!-- else if action.udpate -->
<include layout="update.xml"
bind:update="@{action.update}">
<!-- else if action.video -->
<include layout="video.xml"
bind:video="@{action.video}">
<TextView>
... etc

因此,基本上基于动作(项目,更新或视频)中存在的子对象显示其布局并绑定视图但不显示其他包含。我应该只使用 android 的View:Visibility还是我忽略了包含的内容?

我应该只使用安卓的 View:Visibility

是的,最好的方法是检查数据绑定布局中的boolean并相应地设置可见性,如下所示。

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
>
<data>
<import type="android.view.View"/>
<variable
name="action"
type="com.example.android.action"/>
</data>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
layout="@layout/item"
android:visibility="@{action.item ? View.VISIBLE: View.GONE}"/>
<include
layout="@layout/update"
android:visibility="@{action.someOtherObject!=null ? View.VISIBLE: View.GONE}"/>
</LinearLayout>
</layout>

在这里,您可以按上述方式检查NULLBoolean

请记住给包含的布局一个id否则它不起作用

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<data>
<import type="android.view.View"/>
<variable
name="show"
type="Boolean" />
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:background="@color/colorPrimary">

<include layout="@layout/progress"
android:id="@+id/progress"
android:visibility="@{show?View.VISIBLE:View.GONE}"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>

要实现这一点

if(TextUtils.isEmpty(action.textData)) VISIBILITY = GONE; else VISIBILITY = VISIBLE;

您可以在数据标记中导入 TextUtils,然后在 xml 文件中使用 TextUtils isEmpty() 函数

相关内容

  • 没有找到相关文章

最新更新