如何在 android 4.2 中自定义 android 操作栏?

How to customize android action bar in android 4.2?

经过大量搜索和测试无法自定义操作栏的解决方案。 This post 真的很好,但对我没有帮助。我想知道为什么在 android 做这个简单的工作真的很难。

我使用 Android Studio 中的 Basic Activity、API 17 和 Android 4.2 创建了一个示例项目,并希望自定义带有白色背景的操作栏和深色文本颜色,不更改 style.xml.

中的“colorPrimary”

下面是我的代码,但是没有用,当然我也测试了其他方法也没有用,这是我最新的测试代码。可能是因为 API 版本?

这是在color.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorPrimary">#028a58</color>
    <color name="colorPrimaryDark">#005c3a</color>
    <color name="colorAccent">#03DAC5</color>
     //I added these lines
    <color name="colorWhite">#FFFFFF</color>
    <color name="colorDark">#4E4E4E</color>
</resources>

在style.xml:

<resources>
  <!-- Base application theme. -->
  <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
      <!-- Customize your theme here. -->
      <item name="colorPrimary">@color/colorPrimary</item>
       <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
      <item name="colorAccent">@color/colorAccent</item>
      <item name="actionBarStyle">@style/MyActionBar</item>
 </style>
   <style name="AppTheme.NoActionBar">
      <item name="windowActionBar">false</item>
      <item name="windowNoTitle">true</item>
  </style>
  <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
  <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

  <style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
     <item name="android:background"  >@color/colorWhite</item>
     <item name="background">@color/colorWhite</item>
     <item name="android:textColor">@color/colorDark</item>
   </style>
</resources>

更新:

activity_main.xml:

<androidx.coordinatorlayout.widget.CoordinatorLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context=".MainActivity">

 <com.google.android.material.appbar.AppBarLayout
     android:layout_height="wrap_content"
     android:layout_width="match_parent"
     android:theme="@style/AppTheme.AppBarOverlay">  

    <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>

<include layout="@layout/content_main"/>

<com.google.android.material.floatingactionbutton.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="@dimen/fab_margin"
    app:srcCompat="@android:drawable/ic_dialog_email" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>

使用 ActionBar 您可以在您的应用主题中使用 actionBarStyle 属性:

 <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
      <item name="actionBarStyle">@style/MyActionBar</item>
 </style>

  <style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
       <item name="background">@color/...</item>
  </style>

actionBarTheme属性:

  <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
     <item name="actionBarTheme">@style/ThemeOverlay.ActionBar</item>
  </style>


  <style name="ThemeOverlay.ActionBar" parent="">
        <item name="colorPrimary">@color/....</item>
  </style>

使用 Toolbar 你可以使用:

  • 布局中的android:background属性:
    <androidx.appcompat.widget.Toolbar
        android:background="@color/...."
        ... />
  • 使用 android:theme 属性覆盖默认颜色:
    <androidx.appcompat.widget.Toolbar
        android:theme="@style/ThemeOverlay.ActionBar"
        ... />