android – Sherlock动作栏改变文字颜色

前端之家收集整理的这篇文章主要介绍了android – Sherlock动作栏改变文字颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_403_0@
我正在使用sherlock动作栏版本4.1.0(2012-05-17).
如何更改此屏幕截图中文本颜色的颜色?在实际设备上,它几乎是可读的

我有这个主题

<style name="MyTheme" parent="@style/Theme.Sherlock.Light">
    <item name="android:textSize">20dp</item> 
</style>

这在AndroidManifest.xml中

<application
        android:name="abc.MyApp"
        android:icon="@drawable/ic_launcher"
        android:logo="@drawable/logo"
        android:label="@string/app_name"
        android:theme="@style/MyTheme" 
        >

解决方法

实际上我通过执行以下操作设法在abs 4.2中设置SearchView文本颜色的样式:
<style name="MyTheme" parent="Theme.Sherlock.Light">

    <item name="searchAutoCompleteTextView">@style/Widget.Styled.SearchAutocompleteTextView</item>

    <item name="queryHint">@string/Search</item>
    <item name="android:queryHint">@string/Search</item>


</style>

<style name="Widget.Styled.SearchAutocompleteTextView" parent="Widget.Sherlock.Light.SearchAutoCompleteTextView">
    <item name="android:textColor">YOU_COLOR_HERE</item>

</style>
原文链接:https://www.f2er.com/android/308657.html

猜你在找的Android相关文章