我开始使用Android数据绑定但没有成功。我完成了documentation中提出的所有操作,但是当我必须设置方法值时,我得到null。 我正在使用Android Studio 2.1.2并且我放入了gradle
dataBinding {
enabled = true
}
在布局中我完全相同的放置布局和内部我放置标签数据:
<data>
<variable name="order" type="com.example.Order"/>
</data>
并在代码中我想要有绑定变量
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
ActivityOrderOnePaneBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_order_one_pane);
binding.setOrder(mOrder);
绑定为空,我没有编译错误。
答案 0 :(得分:0)
由于您在setContentView
覆盖Activity
,因此需要替换:
ActivityOrderOnePaneBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_order_one_pane);
与
ActivityOrderOnePaneBinding binding = DataBindingUtil.inflate(getLayoutInflater(), R.layout.activity_order_one_pane, getContentFrame(), false);
setContentView(binding.getRoot());
我遇到了同样的问题,因为我在我的基座setContentView
中覆盖Activity
并修复了它。
如果您覆盖setContentView
,则getContentFrame()
是包含您的内容的ViewGroup
,不包括AppBarLayout
和Toolbar
。以下是getContentFrame()
如果您的基本布局类似于以下内容的示例:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
...>
<android.support.design.widget.CollapsingToolbarLayout
...>
<android.support.v7.widget.Toolbar
.../>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.ContentFrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v7.widget.ContentFrameLayout>
</android.support.design.widget.CoordinatorLayout>
getContentFrame()
只返回上述布局中的FrameLayout
。
protected ViewGroup getContentFrame() {
return (ViewGroup) findViewById(R.id.content_frame);
}
我希望这会有所帮助。
答案 1 :(得分:0)
尝试重建gradle和清理项目