Skip to content

How to search for android theme properties #13122

Answered by m1ga
beppo-ivel asked this question in Q&A
Discussion options

You must be logged in to vote

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>

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

<item name="actionBarStyle">@style/CustomTheme.ActionBarStyle</item>

with

<style name="CustomTheme.ActionBarStyle" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
	<!-- actionbar -->
	<item name="elevation">0dp</item>
	<item name="andr…

Replies: 1 comment 10 replies

Comment options

You must be logged in to vote
10 replies
@m1ga
Comment options

m1ga Oct 17, 2021
Collaborator

@beppo-ivel
Comment options

@m1ga
Comment options

m1ga Oct 18, 2021
Collaborator

@beppo-ivel
Comment options

@m1ga
Comment options

m1ga Oct 18, 2021
Collaborator

Answer selected by beppo-ivel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants