小编Pau*_*erx的帖子

Android - ActionBarSherlock - 在子菜单中设置文本的textcolor

如何在Action Bar Sherlock的子菜单中设置文本的颜色?我可以设置背景而不是textcolor .. =(

temas.xml

<style name="Tema.Laranja" parent="Theme.Sherlock.Light.ForceOverflow">

    <item name="actionBarItemBackground">@drawable/background_selecionado</item>
    <item name="android:actionBarItemBackground">@drawable/background_selecionado</item>

    <item name="android:dropDownListViewStyle">@style/Tema.Laranja.ListSelector</item>
    <item name="dropDownListViewStyle">@style/Tema.Laranja.ListSelector</item>

    <item name="popupMenuStyle">@style/Tema.Laranja.Popup</item>
    <item name="android:popupMenuStyle">@style/Tema.Laranja.Popup</item>
</style>

    <style name="Tema.Laranja.Popup" parent="Widget.Sherlock.Light.PopupMenu">
    <item name="android:popupBackground">@drawable/shape_laranja_arredondado</item>
</style>

<style name="Tema.Laranja.ListSelector" parent="Widget.Sherlock.ListView.DropDown">
    <item name="android:listSelector">@color/listview_actionbar</item>
    <item name="android:textColor">@color/branca</item>
    <item name="android:drawSelectorOnTop">true</item>
</style>
Run Code Online (Sandbox Code Playgroud)

我的listview_actionbar.xml

<item android:state_focused="false"
    android:drawable="@drawable/shape_amarelo_arredondado"/>

<!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
<item android:state_focused="true" android:state_enabled="false"
    android:state_pressed="true"
    android:drawable="@drawable/shape_amarelo_arredondado" />
<item android:state_focused="true" android:state_enabled="false"
    android:drawable="@drawable/shape_amarelo_arredondado" />

<item …
Run Code Online (Sandbox Code Playgroud)

android textcolor submenu actionbarsherlock android-actionbar

5
推荐指数
1
解决办法
3430
查看次数

5
推荐指数
1
解决办法
4017
查看次数