參考:
android沉浸式狀態(tài)欄超燃、fitsSystemWindows锭魔、標題欄折疊
android中的windowTranslucentStatus和fitsSystemWindows的作用
狀態(tài)欄顏色修改:白底黑字!Android淺色狀態(tài)欄黑色字體模式
Android DecorView淺析
現(xiàn)在大部分Android手機都是android4.4以上,都支持開發(fā)者可以自定義狀態(tài)欄色值,原來的黑底白字時代已過去举娩。在android5.0上我們還可以自定義狀態(tài)欄文字色值,讓其顯示深色字體构罗。
一铜涉、沉浸式狀態(tài)欄的實現(xiàn)
實現(xiàn)沉浸式狀態(tài)欄效果,一般有兩種方式:
1?設置系統(tǒng)主題遂唧,在styles.xml中設置芙代,在相應需要實現(xiàn)的界面里設置其android:theme主題。
需要根據(jù)不同機器版本設置多個styles.xml文件蠢箩。
下面是values-v21下的styles.xml—android5.0以上機器適用的主題
<style name="AppTheme" parent="AppTheme.Base">
<item name="android:colorPrimary">@color/colorPrimary</item>
<item name="android:colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="android:colorAccent">@color/colorAccent</item>
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
<item name="android:windowTranslucentStatus">true</item>
</style>
在values-v19中的styles.xml中設置如下:
<style name="AppTheme"parent="@style/BaseAppTheme">
<item name="android:windowTranslucentStatus">true</item>
</style>
而在values的styles.xml中則不設置任何屬性链蕊。
2?在代碼中設置界面,也需要區(qū)分不同的android版本
5.0以上并設置界面全屏谬泌,并設置狀態(tài)欄背景顏色滔韵,在4.4的機器上,則設置FLAG_TRANSLUCENT_STATUS屬性掌实。
具體設置代碼如下:
protected void setStatusBar() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {//5.0及以上
View decorView = getWindow().getDecorView();
int option = View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
decorView.setSystemUiVisibility(option);
getWindow().setStatusBarColor(getResources().getColor(R.color.colorTheme));
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {//4.4到5.0
WindowManager.LayoutParams localLayoutParams = getWindow().getAttributes();
localLayoutParams.flags = (WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS | localLayoutParams.flags);
}
}
若要背景圖也延伸到系統(tǒng)窗口陪蜻,一般通過將狀態(tài)欄設成透明色同蜻,這樣就可以實現(xiàn)背景圖延伸到狀態(tài)欄腋腮。
下面對以上用到的一些屬性進行歸納總結:
屬性 | 注意事項 |
---|---|
windowTranslucentStatus | 透明狀態(tài)欄(Android 4.4系統(tǒng)效果為透明狀態(tài),5.0及其以后系統(tǒng)效果為半透明狀態(tài))在styles.xml(v19)中設置衔峰,注意:透明狀態(tài)欄屬性會使得內容嵌入到狀態(tài)欄里面 |
windowTranslucentNavigation | 透明導航欄(android4.4以上支持)邻悬,在styles.xml(v19)中設置 |
windowDrawsSystemBarBackgrounds | 使導航欄和狀態(tài)欄可繪制(android5.0以上支持),即狀態(tài)欄是否覆蓋在ContentView上症昏,在styles.xml(v21)中設置 |
android:statusBarColor | 狀態(tài)欄顏色 |
android:colorPrimary | 標題欄背景顏色 |
android:colorPrimaryDark | 狀態(tài)欄透明層顏色 |
android:colorAccent | 一般如floatingActionBar按鈕的顏色,RadioButton/輸入框聚焦/進度條等色值 |
android:textColorPrimary | 標題欄文字色值 |
android:windowBackground | 窗口背景色 |
二父丰、fitSystemWindows屬性
android:fitsSystemWindows設置成true確保應用內容不會和系統(tǒng)窗口(狀態(tài)欄和底下的虛擬導般欄)重疊肝谭。通過在 View 上設置和系統(tǒng)窗口一樣高度的邊框(padding )來確保應用內容不會出現(xiàn)到系統(tǒng)窗口下面。
注意事項:如果多個View設置了android:fitsSystemWindows=”true”,則只有初始的view起作用,都是從第一個設置了fitsSystemWindows的view開始計算paddin(即如果在布局中不是最外層控件設置fitsSystemWindows攘烛,那么設置的那個控件高度會多出一個狀態(tài)欄高度)魏滚;View 的其他 padding 值被重新改寫了,在使用 fitsSystemWindows 為 true 的View 上設置 padding 值(paddingLeft/paddingTop/ 等)是沒有效果坟漱。
優(yōu)點:系統(tǒng)會自己計算好布局距狀態(tài)欄的高度鼠次,使界面內容布局位于狀態(tài)欄下方和導航欄上方。
缺點:若有背景圖需要延伸到系統(tǒng)窗口(狀態(tài)欄)時無法實現(xiàn)芋齿,需要借助如DrawerLayout腥寇,NavigationView,coordinatorlayout等控件沟突,這些控件對dispatchApplyWindowInsets進行了處理花颗。
如下圖所示捕传,如果沒有借助上述的控件惠拭,則上面的圖片無法延伸至狀態(tài)欄。
三庸论、使背景圖片延伸至狀態(tài)欄
如果我們可以不借助上述控件职辅,但也希望上面的圖片延伸到狀態(tài)欄呢,我們可以將狀態(tài)欄設置成透明狀態(tài)聂示,不使用fitSystemWindow屬性域携,并將標題欄設置paddingTop狀態(tài)欄的高度。
//調用該方法使得內容在狀態(tài)欄下面
private void setStateBarPadding(boolean isImmerse) {//是否浸入
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
}
TextView tv_content = (TextView) findViewById(R.id.tv_content);
// 設置頭部控件ViewGroup的PaddingTop,防止界面與狀態(tài)欄重疊
int statusBarHeight = getStatusBarHeight(this);
tv_content.setPadding(0, isImmerse ? 0 : statusBarHeight, 0, 0);
}
private static int getStatusBarHeight(Context context) {
int result = 0;
int resourceId = context.getResources().getIdentifier(
"status_bar_height", "dimen", "android");
if (resourceId > 0) {
result = context.getResources().getDimensionPixelSize(resourceId);
}
return result;
}
四鱼喉、標題欄折疊實現(xiàn)
若要使上圖2中的頁面秀鞭,向上滑動時,頭圖慢慢消失扛禽,當要顯示現(xiàn)在的列表時锋边,標題欄顯示在最頂上,如下圖效果编曼,就需要結合CoordinatorLayout與CollapsingToolbarLayout結合使用豆巨。
具體實現(xiàn)布局如下:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="200dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/logo"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@mipmap/header_img"
android:contentDescription="@null"
android:fitsSystemWindows="true"
android:scaleType="fitCenter"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.1" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/nested_scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/large_text" />
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/floating_action_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:clickable="true"
android:src="@mipmap/ic_star_black_24dp"
app:layout_anchor="@id/appbar"
app:layout_anchorGravity="bottom|right|end" />
</android.support.design.widget.CoordinatorLayout>
具體使用方法:CoordinatorLayout作為最外層容器,AppBarLayout作為第一個子view掐场,還包含一個NestedScrollView作為一起滑動的控件往扔,CollapsingToolbarLayout嵌套在AppBarLayout里,AppBarLayout里面又嵌套ImageView和Toolbar熊户。
1?CoordinatorLayout
CoordinatorLayout是用來協(xié)調其子view們之間動作的一個父view萍膛。
類似于FrameLayout,根布局嚷堡,能實現(xiàn)的效果:
- 讓浮動操作按鈕上下滑動蝗罗,為Snackbar留出空間。
- 擴展或者縮小Toolbar或者頭部,讓主內容區(qū)域有更多的空間绿饵。
- 控制哪個view應該擴展還是收縮欠肾,以及其顯示大小比例,包括視差滾動效果動畫拟赊。
我們在NestedScrollView中設置了behavior屬性刺桃,
它主要用來給CoordinatorLayout的子view們實現(xiàn)交互的。
2?AppBarLayout
AppBarLayout是一種支持響應滾動手勢的app bar布局(比如工具欄滾出或滾入屏幕)吸祟;與AppBarLayout組合的滾動布局有(Recyclerview瑟慈、NestedScrollView等),這需要相應的控件設置app:layout_behavior=”@string/appbar_scrolling_view_behavior”(上面代碼中NestedScrollView控件所設置的)屋匕。沒有設置的話葛碧,AppBarLayout將不會響應滾動布局的滾動事件。
3?CollapsingToolbarLayout
CollapsingToolbarLayout是專門用來實現(xiàn)子布局內不同元素響應滾動細節(jié)的布局过吻。
在CollapsingToolbarLayout中进泼,設置了以下以個參數(shù):
- //當完全CollapsingToolbarLayout折疊(收縮)后的背景顏色。
app:contentScrim=”?attr/colorPrimary” - //設置擴張時候(還沒有收縮時)title距離左邊的距離
app:expandedTitleMarginStart=”48dp” - //設置擴張時候(還沒有收縮時)title距離右邊的距離
app:expandedTitleMarginEnd=”64dp”
4)//scroll:設置該控件能滾動纤虽, exitUntilCollapsed: 向上滾動時收縮View乳绕,Toolbar一直固定在上面
app:layout_scrollFlags=”scroll|exitUntilCollapsed”
具體layout_scrollFlags還有其他三個設置:
- enterAlways - 實現(xiàn)quick return效果, 當向下移動時,立即顯示View(比如Toolbar)逼纸。
- enterAlwaysCollapsed - 當你的View已經設置minHeight屬性又使用此標志時洋措,那么view將在到達這個最小高度的時候開始顯示,并且從這個時候開始慢慢展開杰刽,當滾動到頂部的時候展開完菠发。
- snap:當一個滾動事件結束,如果視圖是部分可見的贺嫂,那么它將被滾動到收縮或展開滓鸠。例如,如果視圖只有底部25%顯示涝婉,它將折疊哥力。相反,如果它的底部75%可見墩弯,那么它將完全展開吩跋。
CollapsingToolbarLayout還可以進行一些其他設置:
- app:contentScrim:設置折疊時標題欄布局的顏色,默認colorPrimary的色值
- app:statusBarScrim:設置折疊時狀態(tài)欄的顏色渔工。默認colorPrimaryDark的色值锌钮。
4?Toolbar
這里設置了app:layout_collapseMode=”pin”
pp:layout_collapseMode有三種設置:
- off:這個是默認屬性,布局將正常顯示引矩,沒有折疊的行為梁丘。
- pin:CollapsingToolbarLayout折疊后侵浸,此布局將固定在頂部。
- parallax:CollapsingToolbarLayout折疊時氛谜,此布局也會有視差折疊效果掏觉。
若設置了parallax模式時,還可以通過app:layout_collapseParallaxMultiplier設置視差滾動因子值漫,值為:0~1澳腹。
5?NestedScrollView
這里設置了app:layout_behavior屬性,
app:layout_behavior=”@string/appbar_scrolling_view_behavior”
behavior屬性主要是設置了ScrollView與AppBarLayout的相互依賴關系杨何,以非侵入的為View添加動態(tài)的依賴布局酱塔,和處理父布局(CoordinatorLayout)滑動手勢。
具體原碼如下:
/**
* Behavior which should be used by {@link View}s which can scroll vertically and support
* nested scrolling to automatically scroll any {@link AppBarLayout} siblings.
*/
public static class ScrollingViewBehavior extends HeaderScrollingViewBehavior {
public ScrollingViewBehavior() {}
public ScrollingViewBehavior(Context context, AttributeSet attrs) {
}
@Override
public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) {
// We depend on any AppBarLayouts
return dependency instanceof AppBarLayout;
}
@Override
public boolean onDependentViewChanged(CoordinatorLayout parent, View child,
View dependency) {
offsetChildAsNeeded(parent, child, dependency);
return false;
}
@Override
public boolean onRequestChildRectangleOnScreen(CoordinatorLayout parent, View child,
Rect rectangle, boolean immediate) {
}
private void offsetChildAsNeeded(CoordinatorLayout parent, View child, View dependency) {
}
@Override
float getOverlapRatioForOffset(final View header) {
}
private static int getAppBarLayoutOffset(AppBarLayout abl) {
}
@Override
AppBarLayout findFirstDependency(List<View> views) {
}
@Override
int getScrollRange(View v) {
}
}