6

我有一个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 不可见。知道为什么数据绑定引擎会删除/隐藏此活动中的工具栏吗?

4

1 回答 1

1

ViewStubs 需要特别注意,因为它们在膨胀时会替换自己,而不是填充自己。阅读更多关于数据绑定/指南#viewstubs

另一种解决方案(完全避免ViewStub)是让您ConcreteActivities在其布局中包含工具栏布局 - 而不是膨胀包含工具栏的存根。如果您想为活动使用自定义工具栏,您也不会那么头疼。

于 2015-08-13T11:54:33.560 回答