2017-01-05 18 views
1

私はスクロールビューをスクロールするときに隠れるツールバーでアクティビティを持っていますが、コンテンツは電話スクリーンよりはるかに大きくないので、ツールバーの隠しを無効にしたい意味がない。私はこれをどのようにして行うのですか?スクロール時のツールバーの折りたたみを無効にする

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
      android:id="@+id/svCreateAdvert" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:fillViewport="true"> 

    <RelativeLayout 
     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="wrap_content" 
     android:background="@color/grey" 
     android:orientation="vertical" 
     tools:context=".CreateAdvert"> 

     <LinearLayout 
      android:id="@+id/create_advert_container_toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical"> 

      <android.support.v7.widget.Toolbar 
       android:id="@+id/createAdvertToolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       android:background="?attr/colorPrimary" 
       android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 

       app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/> 
     </LinearLayout> 

     ... 

    </RelativeLayout> 
</ScrollView> 
+1

スクロールバーの外側にツールバーを配置しますか? –

答えて

0

スクロールバーの外側にツールバーを置くと、スクロールしてもツールバーには反映されません。

ツールバーの周りに余分な直線レイアウトを追加する必要があります。&このようなスクロールビュー。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/create_advert_container_toolbar" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/createAdvertToolbar" 
     app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" /> 

    <ScrollView 
     android:id="@+id/svCreateAdvert" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:fillViewport="true"> 

     <RelativeLayout 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="wrap_content" 
      android:background="@color/grey" 
      android:orientation="vertical" 
      tools:context=".CreateAdvert"> 

     </RelativeLayout> 
    </ScrollView> 
</LinearLayout> 
関連する問題