更新:ここではexample appです。 Nexus 6P、Android 6.0.1でテストしました半透明ナビゲーションがtrueの場合、AppBarLayoutのツールバーはスクロールしません。
私はCoordinatorLayout
とRecyclerView
を使用しています。 <item name="android:windowTranslucentNavigation">true</item>
ツールバーが隠れていない場合(ただし、スクロール可能です) 23.2.1
<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:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
私はAppBarLayout
にandroid:fitsSystemWindows="true"
を追加した場合、それはいくつかの問題で動作します:APPCOMPATはV7です。
解決策はありますか?
問題の解決方法を見つけることができますか? – atabek