要定制 Android 狀態欄,您可以使用以下方法:
使用 Material Design 庫
在您的項目中添加 Material Design 庫依賴項。在 app/build.gradle 文件中添加以下代碼:
dependencies {
implementation 'com.google.android.material:material:1.4.0'
}
然后,在您的 Activity 的布局文件中添加一個 AppBarLayout 和一個 Toolbar:
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</com.google.android.material.appbar.AppBarLayout>
在 Activity 的 Java 或 Kotlin 文件中設置 Toolbar 為應用的狀態欄和標題欄:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
if (getSupportActionBar() != null) {
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}
}
使用自定義主題
在 res/values/styles.xml 文件中創建一個自定義主題,繼承自 AppTheme,并重寫相關屬性以定制狀態欄:
<style name="CustomStatusBarTheme" parent="AppTheme">
<item name="android:windowLightStatusBar">true</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
接下來,在 AndroidManifest.xml 文件中的 <application>
標簽中應用自定義主題:
<application
android:theme="@style/CustomStatusBarTheme">
...
</application>
這將使您的應用狀態欄使用深色文本和背景。您可以根據需要調整其他屬性。
請注意,這些方法可能需要根據您的項目需求進行調整。在使用自定義主題時,請確保您的應用支持 Android 5.0(API 級別 21)及更高版本。