Android get theme colors, disabled button - android

Is there a way to read current theme colors from code ?
I want to
1. Read disabled Button color and put it as EditText background
2. Read Spinner selected item color and put it as TextView background

Read disabled Button color and put it as EditText background
Disabled is not a color. It is a state of a StateListDrawable that is used for the button background. Hence, you cannot "read disabled Button color", because there is no simple color for "disabled".
Read Spinner selected item color and put it as TextView background
The selected item in a Spinner has no specific color, as so therefore I have no idea what color you might mean here.

Related

Can't get different state background for MaterialButtonToggleGroup

I'm using Material 3 ButtonToggleGroup, I want to have a different background when a button is selected. However, If I don't add any attributes to my style applied to MaterialButton, I get the background set to colorPrimary when a button is selected but when it's not it's transparent.
When I add a backgroundTint attribute, it always has the same background color, no matter if the button is selected.

How change Android spinner prompt background color

Hi I want to change the background color of Android spinner prompt or title, not the background color of Spinner List item.
So far I have not yet found any effective way to do it.
Thanks.

Android change color in settings menu popup

I want to change the Text color of the inputfield in a preferencescreen. The defaul Text color is set to white, but you almost can't See white Text in a white Dialog so I want to change that. Ho can that be done? Also I want to change the checkbox Norder when the checkbox is not checked

Get Button Drawable CheckBox Android

I have multiples CheckBox.
I've set a selector for normal and pressed states.
In my app I'll have a dynamic color and i want change the color according to the user's selection, there is a way to change the color for a CheckBox?
You can change CheckBoxs drawable using android:button="#drawable/your_check_drawable" attribute.

Spinner selection issue

I want to implement the below:
A spinner which would have a custom layout, its background color would be black and font would be white. But what I want is that when I select any component then my selection background and font color should reverted back to its defaults (in terms of color).
#Rao use custom Spinner and for colour state change use Color State list

Categories

Resources