0
コンテンツビュー全体をカバーするようにViewStub
を拡張したいと思います。コンテンツビュー全体をカバーするViewStubの膨張
ViewStub
は、アクティビティのCoordinatorLayout
ルートビューに含まれています。さらに、アクティビティのレイアウトにはToolbar
がActionBar
から.setSupportActionBar()
に設定されています。
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
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"
app:layout_scrollFlags="scroll|enterAlways|snap"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<ViewStub
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/stub"
android:inflatedId="@+id/subView"
android:layout="@layout/loading_view"
/>
</android.support.design.widget.CoordinatorLayout>
は現在、ViewStub
はToolbar
下だけスペースを取るために膨張させます。以下は
アクティビティのレイアウトです。前述のようにToolbar
がActionBar
に設定されている可能性があります。このViewStub
を膨らませてコンテンツビュー全体を占有させるにはどうすればよいですか?