我正在尝试使用新的Android数据绑定库将自定义视图上的事件绑定,但遇到了问题。
以下是我的自定义视图的相关部分:
public class SuperCustomView extends FrameLayout {
private OnToggleListener mToggleListener;
public interface OnToggleListener {
void onToggle(boolean switchPosition);
}
public void setOnToggleListener(OnToggleListener listener) {
mToggleListener = listener;
}
.../...
}
我正在尝试使用此自定义视图并使用以下内容绑定onToggle
事件:
<data>
<variable
name="controller"
type="com.xxx.BlopController"/>
</data>
<com.company.views.SuperCustomView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:onToggle="@{controller.toggleStrokeLimitation}"
app:custom_title="Blah"
app:custom_summary="Bloh"
app:custom_widget="toggle"/>
toggleStrokeLimitation
是控制器上的方法:
public void toggleStrokeLimitation(boolean switchPosition) {
maxStrokeEnabled.set(switchPosition);
}
编译时出现此错误:
> java.lang.RuntimeException: Found data binding errors.
****/ data binding error ****msg:Cannot find the setter for attribute 'app:onToggle' with parameter type java.lang.Object. file:/path/to/androidapp/app/src/main/res/layout/fragment_stroke.xml loc:36:35 - 36:67 ****\ data binding error ****
我尝试使用android:onToggle
代替app:onToggle
,但却遇到同样的错误。
在阅读binding events section of the doc时,我觉得我可以将控制器上的任何方法连接到onToggle
事件。
框架是否将controller.toggleStrokeLimitation
方法包装到SuperCustomView.OnToggleListener
中?是否有关于框架提供的现有onClick
背后的魔法的暗示?
答案 0 :(得分:21)
@BindingMethods(@BindingMethod(type = SuperCustomView.class, attribute = "app:onToggle", method = "setOnToggleListener"))
public class SuperCustomView extends FrameLayout {
private OnToggleListener mToggleListener;
public interface OnToggleListener {
void onToggle(boolean switchPosition);
}
public void setOnToggleListener(OnToggleListener listener) {
mToggleListener = listener;
}
.../...
}
我测试代码的黑客是:
public void setOnToggleListener(final OnToggleListener listener) {
this.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
toggle = !toggle;
listener.onToggle(toggle);
}
});
}
在我的控制器对象上:
public class MyController {
private Context context;
public MyController(Context context) {
this.context = context;
}
public void toggleStrokeLimitation(boolean switchPosition) {
Toast.makeText(context, "Toggle" + switchPosition, Toast.LENGTH_SHORT).show();
}
}
或者您也可以使用xml:
<com.androidbolts.databindingsample.model.SuperCustomView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:onToggleListener="@{controller.toggleStrokeLimitation}" />
现在无需添加@BindingMethods注释。
答案 1 :(得分:3)
如果按照Java bean格式正确定义方法名称,则可能不需要 BindingMethods
用于自定义视图上的侦听侦听器。
这是一个例子
CustomView类
public class CustomView extends LinearLayout {
...
private OnCustomViewListener onCustomViewListener;
...
public void setOnCustomViewListener(OnCustomViewListener onCustomViewListener) {
this.onCustomViewListener = onCustomViewListener;
}
....
public interface OnCustomViewListener {
void onCustomViewListenerMethod(int aNumber);
}
}
<强> XML 强>
<...CustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:onCustomViewListener="@{viewModel.viewModelListenerMethod}" // or use can use app:onCustomViewListener="@{viewModel::viewModelListenerMethod}"
/>
<强>视图模型强>
public class ViewModel extends BaseObservable{
public void viewModelListenerMethod(int aNumber){
// handle listener here
}
}