layout_content.xml
<layout>
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
/>
</android.support.design.widget.AppBarLayout>
</layout>
layout_main.xml
<layout>
<android.support.v4.widget.DrawerLayout
android:id="@+id/dl_main_drawer"
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:fitsSystemWindows="true">
<include layout="@layout/layout_content" android:id="@+id/content"/>
</android.support.v4.widget.DrawerLayout>
</layout>
MainActivity.java
LayoutMainBinding binding = DataBindingUtil.setContentView(this,R.layout.layout_main);
setSupportActionBar(binding.content.toolbar);
Android Studio智能感知检查binding.content是ViewDataBinding obj
但构建错误'无法找到符号变量内容' 这有什么问题吗? THX!
答案 0 :(得分:12)
布局activity_main.xml
:
<layout>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/layout_content" android:id="@+id/content" />
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
</layout>
生成ActivityMainBinding.java
。在MainActivity.java中,在content
参数中使用setSupportActionBar
生成的字段:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ActivityMainBinding binding = DataBindingUtil.setContentView(this,R.layout.activity_main);
setSupportActionBar(binding.content.toolbar);
}
通常,布局将为具有android:id
的每个视图生成公共最终字段,并为每个包含ID的绑定子类生成公共最终字段。在这种情况下,数据绑定系统没有检测到包含的内容@layout/layout_content
是绑定布局,因此没有捕获包含的Binding类。
当变量绑定到include时,数据绑定系统将使用它来确定包含的布局是绑定布局。所以,如果您的布局改为:
<include layout="@layout/layout_content"
android:id="@+id/content"
app:someVar="@{someVar}" />
您已获得类型为LayoutContentBinding
的内容字段。这确实假设someVar
和activity_main.xml
都声明了layout_content.xml
。
Android Studio中的错误指向了正确的位置,但很难理解。将来,您可以在app/build
目录中查找生成的绑定类。这可以帮助您弄清楚错误的含义。
我已经提交了一个错误来修复错误 - 我们应该为包含ID的公开最终字段生成。