StatusBarCompat
Only work for SDK >= 19.
Usage
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven {
url "https://jitpack.io"
}
}
}
Add the dependency
dependencies {
compile ('com.github.niorgai:StatusBarCompat:2.1.4', {
exclude group: 'com.android.support'
}
)
}
SDK | KITKAT(19) | LOLLIPOP(21) |
---|---|---|
TranslucentStatusBar | SetStatusBarColor |
---|---|
This is a utils for status bar, And you do not need to change your style.xml
file. The most feature is you can toggle setStatusBarColor
and translucentStatusBar
without recreate activity.
//set color for status bar StatusBarCompat.setStatusBarColor(Activity activity, int color) //add alpha to color StatusBarCompat.setStatusBarColor(Activity activity, int statusColor, int alpha)
//translucent status bar StatusBarCompat.translucentStatusBar(activity);
//should hide status bar background (default black background) when SDK >= 21 StatusBarCompat.translucentStatusBar(Activity activity, boolean hideStatusBarBackground);
//set color for CollapsingToolbarLayout setStatusBarColorForCollapsingToolbar(Activity activity, AppBarLayout appBarLayout, CollapsingToolbarLayout collapsingToolbarLayout,
Toolbar toolbar, int statusColor)
How to use
- Use it after call
setContentView
- If use FullScreen Activity, must call
StatusBarCompat.translucentStatusBar(activity);
About Demo:
Demo shows One Activity with four Fragments.
- CommonFragment call
setStatusBarColor
method, SeekBar can change statusBar's alpha. - TranslucentFragment call
translucentStatusBar
method, when sdk >= 21, button can toggle hide/show statusBar's shadow. - DrawerFragment call
setStatusBarColor
method, show how to compat for DrawerLayout and CoordinatorLayout. - CollapsingFragment call
setStatusBarColorForCollapsingToolbar
method, compat for CollapsingToolbarLayout.
Issues:
These problem only show in SDK between 19 and 21:
- If work with
TabActivity
, It will show a black line in contentView, so you can callStatusBarCompat.setStatusBarColor(Activity activity, int statusColor, int alpha)
and the suggest alpha is 112. - If first view is
DrawerLayout
, let its child view setfitsSystemWindow
to false.
Link:
???
???????? SDK >= 19 (Android 4.4) ????.
????? | ???????? |
---|---|
) |
?????????????????,?????????? style.xml
??,???????????**??? Activity ?????? setStatusBarColor
? translucentStatusBar
**. ???? API :
//????????
StatusBarCompat.setStatusBarColor(Activity activity, int color)
//??alpha?
StatusBarCompat.setStatusBarColor(Activity activity, int statusColor, int alpha)
//?????
StatusBarCompat.translucentStatusBar(activity);
//SDK >= 21?, ????????
StatusBarCompat.translucentStatusBar(Activity activity, boolean hideStatusBarBackground);
//? CollapsingToolbarLayout ????
setStatusBarColorForCollapsingToolbar(Activity activity, AppBarLayout appBarLayout, CollapsingToolbarLayout collapsingToolbarLayout,
Toolbar toolbar, int statusColor)
????
- ?
setContentView
????????. - ??????? Activity ,????
StatusBarCompat.translucentStatusBar(activity);
Demo ??:
Demo ???? Activity , ??? Tab.
- CommonFragment ?????, ???? SeekBar ????????? alpha ?. ?????:
setStatusBarColor
. - TranslucentFragment ?????, ?????????, SDK >= 21?, ????????\?? statusBar ? shadow, ?????:
translucentStatusBar
. - DrawerFragment ?? DrawerLayout + CoordinatorLayout, ?????:
setStatusBarColor
. - CollapsingFragment ?? CollapsingLayout ?????, ?????:
setStatusBarColorForCollapsingToolbar
.
????
????????? 4.4 ?
- ???? TabActivity ?, ????????????, ????
StatusBarCompat.setStatusBarColor(Activity activity, int statusColor, int alpha)
??, ??????? 112. - ?? layout ???? View ? DrawerLayout, ????? View ? fitsSystemWindow ????? false.
??
????? Android-translucent-status-bar?????????.
License
The MIT License (MIT) Copyright (c) 2016 JQ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.