2017-06-22 9 views
0

コンテンツビュー全体をカバーするようにViewStubを拡張したいと思います。コンテンツビュー全体をカバーするViewStubの膨張

ViewStubは、アクティビティのCoordinatorLayoutルートビューに含まれています。さらに、アクティビティのレイアウトにはToolbarActionBarから.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> 

は現在、ViewStubToolbar下だけスペースを取るために膨張させます。以下は

アクティビティのレイアウトです。前述のようにToolbarActionBarに設定されている可能性があります。このViewStubを膨らませてコンテンツビュー全体を占有させるにはどうすればよいですか?

答えて

0

私はgetSupportActionBar.hide()ActionBarを手動で隠すことによって必要な結果を得ることができます。これにより、膨らんだレイアウトがコンテンツビュー全体を占めるようになります。

誰かがより良い解決策を知っている場合は、提出してください。

関連する問題