简体   繁体   English

ActionBar的自定义样式将被忽略(不起作用)

[英]Custom Style of ActionBar is ignored (doesn't work)

I'm attempting to style the ActionBar. 我正在尝试设置ActionBar的样式。 I created my custom style in values folder. 我在values文件夹中创建了自定义样式。 No errors found. 找不到错误。 I ran my application and it worked fine. 我运行了我的应用程序,它运行良好。 However, my custom style doesn't work and I don't know why. 但是,我的自定义样式不起作用,我也不知道为什么。 I did all changes exactly that I wanted. 我所做的所有更改正是我想要的。

I have declared Activity theme in manifest android:theme="@style/Theme.AndroidDevelopers" 我已经在清单android:theme="@style/Theme.AndroidDevelopers"声明了Activity主题

When I run it, the application appears with a ugly action bar (background gray, popup menu gray and text black...the default blue scheme) - it has nothing to do with my custom style: 当我运行它时,应用程序出现一个难看的操作栏(背景灰色,弹出菜单灰色和文本黑色...默认的蓝色方案)-它与我的自定义样式无关:

    <?xml version="1.0" encoding="utf-8"?>
      <resources>
      <style name="Theme.AndroidDevelopers" parent="android:style/Theme.Holo.Light">
      <item name="android:selectableItemBackground">@drawable/ab_item_background</item>
      <item name="android:popupMenuStyle">@style/MyPopupMenu</item>
      <item name="android:dropDownListViewStyle">@style/MyDropDownListView</item>
      <item name="android:actionBarTabStyle">@style/MyActionBarTabStyle</item>
      <item name="android:actionDropDownStyle">@style/MyDropDownNav</item>
      <item name="android:listChoiceIndicatorMultiple">@color/amarelo</item>
      <item name="android:listChoiceIndicatorSingle">@color/vermelho</item>
  </style>

<!-- style the list navigation -->
<style name="MyDropDownNav" parent="android:style/Widget.Holo.Light.Spinner">
<item name="android:background">@color/vermelho</item>
<item name="android:popupBackground">@color/orange</item>
<item name="android:dropDownSelector">@drawable/seletor2</item>
    </style>

<!-- style for the tabs -->
<style name="MyActionBarTabStyle" parent="android:style/Widget.Holo.Light.ActionBar.TabView">
<item name="android:background">@color/verdeclaro</item>
<item name="android:paddingLeft">32dp</item>
<item name="android:paddingRight">32dp</item>
 </style>

  <!-- style the overflow menu -->
 <style name="MyPopupMenu" parent="android:style/Widget.Holo.Light.ListPopupWindow">
 <item name="android:popupBackground">@color/branco</item> 
 </style>

 <!-- style the items within the overflow menu -->
 <style name="MyDropDownListView" parent="android:style/Widget.Holo.ListView.DropDown">
 <item name="android:listSelector">@drawable/seletor2</item>
 </style>

 <style name="MyActionBar" parent="android:style/Widget.Holo.Light.ActionBar">
 <item name="android:background">@drawable/actionbarbackground</item>
 </style>
 </resources>`

Use the appcompat style. 使用appcompat样式。

Here is a good tutorial: https://guides.codepath.com/android/Using-the-App-ToolBar 这是一个很好的教程: https : //guides.codepath.com/android/Using-the-App-ToolBar

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM