我想知道是否可以滾動整個狀態欄(圖標和背景),而不僅僅是背景。幾乎就好像它是工具欄的一部分一樣。在Android上使用協調器佈局可以使狀態欄與工具欄一起滾動嗎?
我遇到了與下面的問題相同的情況,區別在於我想知道是否可以將整個狀態欄作爲背景滾動以使背景不透明 - 這是我認爲的期望結果下面的查詢
這裏是一個圖形
這裏是我的代碼
<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"
tools:context="me.hugopretorius.wishlizt.MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
app:contentScrim="#000">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay"
/>
<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/viewpager"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_below="@id/tabs"/>
<io.github.yavski.fabspeeddial.FabSpeedDial
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
app:fabGravity="bottom_end"
app:fabMenu="@menu/menu_fab"
app:miniFabBackgroundTint="@android:color/white"
app:miniFabDrawableTint="?attr/colorPrimaryDark"
app:miniFabTitleTextColor="?attr/colorPrimaryDark" />
</android.support.design.widget.CoordinatorLayout>
,換句話說,你試圖只顯示** TabLayout **並隱藏'StatusBar',對嗎? – Mohsen
當然,**我不認爲如果你會從**'可信和/或官方來源'找到答案,因爲它不被android推薦隱藏'StatusBar'當'Toolbar'被隱藏並且那裏只是一個「TabLayout」AFAIK。 – Mohsen
@Mohsen當工具欄可見時(當用戶向上滾動時),我想顯示狀態欄,並且在用戶向下滾動時將狀態欄和工具欄都滑出視圖。目前我唯一的選擇是1.隱藏或2.顯示StatusBar。它沒有像工具欄上的滾動動作。 –