作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 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/
我是一名优秀的程序员,十分优秀!