要在Android AppBarLayout中實現自定義顏色,請按照以下步驟操作:
res/values
文件夾下創建一個名為colors.xml
的文件(如果尚未創建),并添加自定義顏色值。例如:<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="custom_appbar_color">#FF4081</color>
</resources>
res/drawable
文件夾下創建一個名為custom_appbar_color.xml
的文件(如果尚未創建),并添加以下內容:<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/custom_appbar_color"/>
</shape>
這將創建一個名為custom_appbar_color.xml
的Drawable文件,其中包含您的自定義顏色。
activity_main.xml
)中找到AppBarLayout部分,并將其背景設置為剛剛創建的Drawable文件:<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/custom_appbar_color">
<!-- 在此處添加其他AppBarLayout子視圖,例如Toolbar,TextView等 -->
</com.google.android.material.appbar.AppBarLayout>
現在,您的AppBarLayout將使用您在colors.xml
文件中定義的自定義顏色作為背景。如果您希望更改顏色,只需更新custom_appbar_color.xml
文件中的顏色值即可。