gpt4 book ai didi

android - 如何在android中使用Data binding实现Switch

转载 作者:行者123 更新时间:2023-11-30 00:13:21 49 4
gpt4 key购买 nike

这是我的 xml:

<data>

<variable
name="notificationViewmodel"
type="com.kdcos.contsync.viewmodel.notification.NotificationViewModel"></variable>

</data>


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorpalegrey">

<RelativeLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_gravity="center"
android:background="#689F38"
android:gravity="center">

<include
android:id="@+id/layout_toolbar"
layout="@layout/toolbar_white_bg" />
</RelativeLayout>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/header"
android:layout_marginTop="20dp"
android:background="@drawable/topbottomborder"
android:orientation="vertical">


<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="18dp"
android:paddingBottom="20dp"
android:paddingLeft="@dimen/margin_20dp">


<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-medium"
android:lineSpacingExtra="30sp"
android:text="@={notificationViewmodel.getText()}"
android:textColor="@color/colorDusk"
android:textSize="16sp"
android:textStyle="normal" />

<Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:paddingRight="10dp"
android:onCheckedChanged="@={notificationViewmodel.checked}"
android:textColor="@android:color/black" />

</RelativeLayout>
</LinearLayout>


</RelativeLayout>

这是我的 View 模型

class NotificationViewModel(val context: Context, val bus: Bus, val manager: CNotificationManager) : BaseObservable() {
private var checked: Boolean = false
fun getToolbarTitle(): String? {
return manager.getToolbarTitle()
}

fun setToolbarTextColor(): Int {
return ContextCompat.getColor(context, R.color.colorDusk)
}

fun isChecked(): Boolean {
return checked
}

fun setChecked(checked: Boolean) {
this.checked = checked
}

fun getText(): String {
if (isChecked()) {
return "Notfication On"
} else {
return "Notification Off"
}
notifyChange()
}
}

我想在 switch 中应用数据绑定(bind),这样当我打开 switch 时,textView 应该显示 Notification off 并且选中的值应该设置为当我关闭时为真然后它 textview 应该显示通知关闭并且选中的 bool 变量应该设置为 false。请建议我如何使用 Data-binding 来实现。

最佳答案

你需要这样做:

内部 xml:

android:onCheckedChanged="@{viewModel::executeOnStatusChanged}"
android:checked="@={viewModel.isChecked()}"

在你的 View 模型中:

@Bindable
val isChecked: MutableLiveData<Boolean> = MutableLiveData()

fun executeOnStatusChanged(switch: CompoundButton, isChecked: Boolean) {
Timber.d("Status changed")
}

关于android - 如何在android中使用Data binding实现Switch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47770059/

49 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com