我正在为一个大学项目重构我的Android应用程序,以使用架构组件,并且我很难在SwitchCompat
上实现双向数据绑定。该应用程序有一个简单的用户界面,有一个显示位置更新状态的TextView
和前面提到的SwitchCompat
,可以打开和关闭位置更新
目前,我对SwitchCompat
的checked
属性使用单向数据绑定,但希望使用双向数据绑定
使用模型视图视图模型体系结构的当前实现如下:
MainViewModel.java:
public class MainViewModel extends ViewModel {
private LiveData<Resource<Location>> mLocationResource;
public MainViewModel() {
mLocationResource = Repository.getInstance().getLocationResource();
}
public LiveData<Resource<Location>> getLocationResource() {
return mLocationResource;
}
public void onCheckedChanged (Context context, boolean isChecked) {
if (isChecked) {
Repository.getInstance().requestLocationUpdates(context);
} else {
Repository.getInstance().removeLocationUpdates(context);
}
}
}
资源<Location>(在这里看到了这个想法)是一个类,它包含可为null的数据(Location)和TextView
可以处理的非null状态:
state.java
public enum State {
LOADING,
UPDATE,
UNKNOWN,
STOPPED
}
现在,fragment_main.xml:中的android:onCheckedChanged
实现
android:onCheckedChanged="@{(buttonView, isChecked) -> viewModel.onCheckedChanged(context, isChecked)}"
最后是将状态转换为布尔检查状态的自定义绑定适配器:
@BindingAdapter({"android:checked"})
public static void setChecked(CompoundButton view, Resource<Location> locationResource) {
State state = locationResource.getState();
boolean checked;
if (state == State.STOPPED) {
checked = false;
} else {
checked = true;
}
if (view.isChecked() != checked) {
view.setChecked(checked);
}
}
以及android:checked
属性在fragment_main.xml:中的实现
android:checked="@{viewModel.getLocationResource}"
正如我上面链接的Android开发者指南所说,我如何在android:checked
中完成所有工作,而不是同时拥有android:checked
和android:onCheckedChanged
(单向数据绑定到双向数据绑定)
此外,如果您认为我的应用程序的架构/逻辑可以改进,请告诉我:)
以下是我的操作方法(对不起Kotlin代码):
首先,我将重构Resource<T>
类,并使state
变量成为MutableLiveData<State>
对象:
enum class State {
LOADING,
UPDATE,
UNKNOWN,
STOPPED
}
class Resource<T>() {
var state = MutableLiveData<State>().apply {
value = State.STOPPED //Setting the initial value to State.STOPPED
}
}
然后我会创建以下ViewModel:
class MainViewModel: ViewModel() {
val locationResource = Resource<Location>()
}
在数据绑定布局中,我会写以下内容:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<variable
name="viewModel"
type="MainViewModel" />
</data>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.appcompat.widget.SwitchCompat
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:resourceState="@={viewModel.locationResource.state}" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{String.valueOf(viewModel.locationResource.state)}" />
</LinearLayout>
</layout>
请注意SwitchCompat
视图中的双向数据绑定表达式@=
。
现在到BindingAdapter
和InverseBindingAdapter
:
@BindingAdapter("resourceState")
fun setResourceState(compoundButton: CompoundButton, resourceState: State) {
compoundButton.isChecked = when (resourceState) {
// You can decide yourself how the mapping should look like:
State.LOADING -> true
State.UPDATE -> true
State.UNKNOWN -> true
State.STOPPED -> false
}
}
@InverseBindingAdapter(attribute = "resourceState", event = "resourceStateAttrChanged")
fun getResourceStateAttrChanged(compoundButton: CompoundButton): State =
// You can decide yourself how the mapping should look like:
if (compoundButton.isChecked) State.UPDATE else State.STOPPED
@BindingAdapter("resourceStateAttrChanged")
fun setResourceStateAttrChanged(
compoundButton: CompoundButton,
attrChange: InverseBindingListener
) {
compoundButton.setOnCheckedChangeListener { _, isChecked ->
attrChange.onChange()
// Not the best place to put this, but it will work for now:
if (isChecked) {
Repository.getInstance().requestLocationUpdates(context);
} else {
Repository.getInstance().removeLocationUpdates(context);
}
}
}
就是这样。现在:
- 每当
locationResource.state
更改为State.STOPPED
时,SwitchCompat
按钮将进入未选中状态 - 每当
locationResource.state
从State.STOPPED
变为另一种状态时,SwitchCompat
按钮将变为选中状态 - 每当点击
SwitchCompat
按钮并变为选中状态时,locationResource.state
的值将变为State.UPDATE
- 每当点击
SwitchCompat
按钮并变为未检查状态时,locationResource.state
的值将变为State.STOPPED
如果有什么不清楚的地方,请随时向我提问。
最后,我放弃了从单向数据绑定转换为双向数据绑定的尝试,但我设法简化了android:checked
属性:
我替换了值
"@{viewModel.getLocationResource}"
带有
"@{viewModel.locationResource.state != State.STOPPED}"
并且完全去除了CCD_ 32CCD_。