Cóż, rozwiązanie Izhar było w porządku, ale osobiście staram się unikać kodu, który wygląda następująco:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
//Do what you need for this SDK
};
Nie lubię też powielać kodu. W twojej odpowiedzi muszę dodać taki wiersz kodu we wszystkich działaniach:
setStatusBarColor(findViewById(R.id.statusBarBackground),getResources().getColor(android.R.color.white));
Więc wziąłem rozwiązanie Izhar i użyłem XML, aby uzyskać ten sam wynik: Utwórz układ dla StatusBar status_bar.xml
<View xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/statusBarHeight"
android:background="@color/primaryColorDark"
android:elevation="@dimen/statusBarElevation">
Zwróć uwagę na atrybuty wysokości i wysokości, zostaną one ustawione w wartościach, wartości -19, wartości-21 poniżej.
Dodaj ten układ do układu działań za pomocą include, main_activity.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/Black" >
<include layout="@layout/status_bar"/>
<include android:id="@+id/app_bar" layout="@layout/app_bar"/>
//The rest of your layout
</RelativeLayout>
Dla paska narzędzi dodaj atrybut górnego marginesu:
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/primaryColor"
app:theme="@style/MyCustomToolBarTheme"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"
android:elevation="@dimen/toolbarElevation"
android:layout_marginTop="@dimen/appBarTopMargin"
android:textDirection="ltr"
android:layoutDirection="ltr">
W swoim appTheme style-v19.xml i styles-v21.xml dodaj windowTranslucent attr:
styles-v19.xml, v21:
<resources>
<item name="android:windowTranslucentStatus">true</item>
</resources>
I na koniec na dimens, dimens-v19, dimens-v21, dodaj wartości dla paska narzędzi topMargin i wysokości statusBarHeight: dimens.xml dla mniej niż KitKat:
<resources>
<dimen name="toolbarElevation">4dp</dimen>
<dimen name="appBarTopMargin">0dp</dimen>
<dimen name="statusBarHeight">0dp</dimen>
</resources>
Wysokość paska stanu wynosi zawsze 24dp dimens-v19.xml dla KitKat i wyższych:
<resources>
<dimen name="statusBarHeight">24dp</dimen>
<dimen name="appBarTopMargin">24dp</dimen>
</resources>
dimens-v21.xml dla Lolipop, w razie potrzeby po prostu dodaj rzędną:
<resources>
<dimen name="statusBarElevation">4dp</dimen>
</resources>
Oto wynik dla Jellybean KitKat i Lollipop: