Senior Member
Thanks Meter 147
Posts: 355
Join Date: Dec 2009
Location: Zapopan, Jalisco
DONATE TO ME
|
Quote:
Originally Posted by wway
Change these parameters
framework-res\res\layout\select_dialog_item.xml
\select_dialog_multichoice.xml
\select_dialog_singlechoice.xml
Code:
android:textColor="@color/primary_text_light_disable_only"
To
Code:
android:textColor="@color/primary_text_dark_disable_only"
Then
framework-res/res/layout/global_actions_item.xml
Delete all"Inverse"
These
Code:
<TextView android:textAppearance="?textAppearanceSmallInverse" android:id="@id/status" android:layout_width="fill_parent" android:layout_height="26.0dip" android:layout_toRightOf="@id/icon" android:layout_alignParentRight="true" android:layout_alignParentBottom="true" />
<TextView android:textAppearance="?textAppearanceLargeInverse" android:gravity="center_vertical" android:id="@id/message" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_toRightOf="@id/icon" android:layout_above="@id/status" android:layout_alignParentTop="true" android:layout_alignParentRight="true" android:layout_alignWithParentIfMissing="true" />
To:
Code:
<TextView android:textAppearance="?textAppearanceSmall" android:id="@id/status" android:layout_width="fill_parent" android:layout_height="26.0dip" android:layout_toRightOf="@id/icon" android:layout_alignParentRight="true" android:layout_alignParentBottom="true" />
<TextView android:textAppearance="?textAppearanceLarge" android:gravity="center_vertical" android:id="@id/message" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_toRightOf="@id/icon" android:layout_above="@id/status" android:layout_alignParentTop="true" android:layout_alignParentRight="true" android:layout_alignWithParentIfMissing="true" />
Next
framework-res\res\values\styles.xml
These:
Code:
style name="TextAppearance.Widget.DropDownHint" parent="@style/TextAppearance.Widget">
<item name="textSize">14.0sp</item>
<item name="textColor">?textColorPrimaryInverse</item>
</style>
<style name="TextAppearance.Widget.DropDownItem" parent="@style/TextAppearance.Widget">
<item name="textColor">@color/primary_text_light_disable_only</item>
</style>
Change to:
Code:
<style name="TextAppearance.Widget.DropDownHint" parent="@style/TextAppearance.Widget">
<item name="textSize">14.0sp</item>
<item name="textColor">?textColorPrimary</item>
</style>
<style name="TextAppearance.Widget.DropDownItem" parent="@style/TextAppearance.Widget">
<item name="textColor">@color/primary_text_dark_disable_only</item>
</style>
But still there will be problems with launcher's popup (add widgets and etc.) and I still dont know how to fix it. I think it's somewher into launcher.apk
|
Hey man did you fix the popup menu text colors problem? I have the same problem I did this: (but change a lot of things, and I don't want that I just want to change popup menus)
In \res\values styles.xml
Change this:
<style name="Widget.TextView" parent="@style/Widget">
<item name="textAppearance">?textAppearanceSmall</item>
</style>
to this:
<style name="Widget.TextView" parent="@style/Widget">
<item name="textAppearance">?textAppearanceSmall</item>
<item name="textColor">#ff ColorThatIWant</item>
|