วิธีแก้ปัญหาของ Izhar นั้นใช้ได้ แต่โดยส่วนตัวฉันพยายามหลีกเลี่ยงจากโค้ดที่มีลักษณะดังนี้:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
//Do what you need for this SDK
};
เช่นกันฉันไม่ต้องการทำซ้ำรหัสเช่นกัน ในคำตอบของคุณฉันต้องเพิ่มบรรทัดของรหัสดังกล่าวในกิจกรรมทั้งหมด:
setStatusBarColor(findViewById(R.id.statusBarBackground),getResources().getColor(android.R.color.white));
ดังนั้นฉันจึงใช้โซลูชัน Izhar และใช้ XML เพื่อให้ได้ผลลัพธ์เดียวกัน: สร้างเค้าโครงสำหรับ 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">
สังเกตุคุณลักษณะความสูงและระดับความสูงเหล่านี้จะถูกตั้งค่าเป็นค่า values-v19, values-v21 ต่อไป
เพิ่มโครงร่างนี้ในโครงร่างกิจกรรมของคุณโดยใช้ 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>
สำหรับ Toolbar ให้เพิ่มแอตทริบิวต์ margin สูงสุด:
<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">
ใน appTheme style-v19.xml และ styles-v21.xml ของคุณเพิ่ม windowTranslucent attr:
styles-v19.xml, v21:
<resources>
<item name="android:windowTranslucentStatus">true</item>
</resources>
และในที่สุดบน dimens ของคุณ dimens-v19, dimens-v21 ของคุณให้เพิ่มค่าสำหรับ Toolbar topMargin และความสูงของสถานะ BarHeight: dimens.xml น้อยกว่า KitKat:
<resources>
<dimen name="toolbarElevation">4dp</dimen>
<dimen name="appBarTopMargin">0dp</dimen>
<dimen name="statusBarHeight">0dp</dimen>
</resources>
ความสูงของแถบสถานะอยู่ที่ 24dp dimens-v19.xml สำหรับ KitKat ขึ้นไป:
<resources>
<dimen name="statusBarHeight">24dp</dimen>
<dimen name="appBarTopMargin">24dp</dimen>
</resources>
dimens-v21.xml สำหรับ Lolipop เพียงเพิ่มระดับความสูงหากต้องการ:
<resources>
<dimen name="statusBarElevation">4dp</dimen>
</resources>
นี่คือผลลัพธ์สำหรับ Jellybean KitKat และ Lollipop: