ツールバーと重なるステータスバーに問題があります。
ユーザーがListView
を下にスクロールすると、WhatsAppやYouTubeアプリと同じように、ツールバーがステータスバーの後ろに表示されなくなり、タブのみが表示される機能が必要でした。
この効果を達成するため、またはこの機能を取得するために、私は次の行を使用しました。
app:layout_scrollFlags="scroll|enterAlways"
私のAndroid.support.v7.widget.Toolbar
に入れますが、前に言ったように、ステータスバーはツールバーと重なっています。
<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/main_content"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:fitsSystemWindows="true"
tools:context=".MainActivity">
<Android.support.design.widget.AppBarLayout
Android:id="@+id/appbar"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:paddingTop="@dimen/appbar_padding_top"
Android:theme="@style/AppTheme.AppBarOverlay">
<Android.support.v7.widget.Toolbar
Android:id="@+id/toolbar"
Android:layout_width="match_parent"
Android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
Android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
</Android.support.v7.widget.Toolbar>
<Android.support.design.widget.TabLayout
Android:id="@+id/tabs"
Android:layout_width="match_parent"
Android:layout_height="wrap_content" />
</Android.support.design.widget.AppBarLayout>
<Android.support.v4.view.ViewPager
Android:id="@+id/container"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</Android.support.design.widget.CoordinatorLayout>
助けてくれてありがとう!
更新:
v21\styles.xml
<resources>>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="Android:windowDrawsSystemBarBackgrounds">true</item>
<item name="Android:statusBarColor">@Android:color/transparent</item>
</style>
</resources>
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>
追加してみてくださいAndroid:fitsSystemWindows="true"
からAndroid.support.design.widget.AppBarLayout
または@style/AppTheme.PopupOverlay
スタイル
v21\styles.xml
削除する <item name="Android:statusBarColor">@Android:color/transparent</item>
これは、デバイスのステータスバーに白いオーバーレイを表示するために機能します(問題の更新後の問題)
私が変更され:
<item name="Android:windowDrawsSystemBarBackgrounds">true</item>
に
<item name="Android:windowDrawsSystemBarBackgrounds">false</item>
私のstyles.xmlファイルで
Android:layout_height="?attr/actionBarSize"
のAndroid.support.v7.widget.Toolbar
を作成してみてください