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
充氣,使它佔據整個內容視圖?