我有一个BaseActivity
具有这种布局的抽象类:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize" />
<ViewStub
android:id="@+id/activity_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
应用程序中的所有活动都扩展了 BaseActivity 并覆盖了一个调用方法getLayoutResID
以提供其布局资源 ID,该 ID 在ViewStub
. 我这样做是为了避免在每个布局中都有工具栏。用于扩展布局的基类中的代码是这样的:
private void setupLayout() {
setContentView(R.layout.activity_base);
ViewStub viewStub = (ViewStub) findViewById(R.id.activity_layout);
viewStub.setLayoutResource(getLayoutResID());
viewStub.inflate();
}
我的一项活动在其布局下方使用新的数据绑定系统:
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable name="user" type="com.myapp.User" />
</data>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@{user.name}" />
</layout>
尽管数据绑定工作得很好,但问题是 ToolBar 不可见。知道为什么数据绑定引擎会删除/隐藏此活动中的工具栏吗?