How to search for android theme properties #13122
-
I tried to change 3 dots option menu color and search a lot to find a solution that told me to use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
you've lnked to the correct articles before. <item name="actionBarTheme">@style/Theme.ActionBarTheme</item> with <style name="Theme.ActionBarTheme" parent="@style/Widget.AppCompat.Light.ActionBar">
<item name="colorControlNormal">#f0f</item>
</style> Since those parts are mainly native Android themes you have to keep searching there For fonts i would try this in your theme
with <style name="CustomTheme.ActionBarStyle" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<!-- actionbar -->
<item name="elevation">0dp</item>
<item name="android:actionMenuTextColor">#f00</item>
<item name="android:titleTextStyle">@style/CustomTheme.ActionBar.TitleTextStyle</item>
<item name="titleTextStyle">@style/CustomTheme.ActionBar.TitleTextStyle</item>
</style> and <style name="CustomTheme.ActionBar.TitleTextStyle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
<!-- actionbar font -->
<item name="android:textColor">#00f</item>
</style> Found it somewhere on Stackoverflow too. I've never made a native App so I'm not familiar with the themes either but there is a lot of code out there (some is very old and might not work). |
Beta Was this translation helpful? Give feedback.
you've lnked to the correct articles before.
with
makes it look like this:
Since those parts are mainly native Android themes you have to keep searching there
android theme actionbar fontfamily
or so.For fonts i would try this in your theme
with