我遇到了不同布局的数据绑定问题。 我有不同方向的布局文件。 对于肖像模式:
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
</layout>
对于landspace模式:
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="match_parent" />
<FrameLayout
android:id="@+id/extra_container"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="match_parent" />
</LinearLayout>
</layout>
当我通过
使用它进行绑定时ViewBinding binding = DataBindingUtil.setContentView(this, R.layout.view);
我无权访问当前绑定extraContainer
。
添加具有相同id的视图并在运行时检查视图类的可能解决方案。还有其他解决方案吗?
答案 0 :(得分:0)
我没有配置不同的DataBinding
解决方案。但我有建议,从res/layout-sw600dp-land/view.xml
中删除“平板电脑”布局并将其与默认视图合并。
检查方向并以横向模式初始化extra_container
布局,否则隐藏它并且不进行初始化。
答案 1 :(得分:0)
通过将Gradle版本更新为2.1.0修复了问题,但没有提及Gradle版本,我也不知道它与Gradle版本的关系。