Android Question Change SeekBar Color via Code

Douglas Farias

Expert
Licensed User
Longtime User
Hi all.
i m using this code (at manifest) to change the seekbar color.
B4X:
<item name="android:progressTint">#FF8D63C7</item>
<item name="android:progressBackgroundTint">#FFCACACA</item>
<item name="android:thumbTint">#FF8D63C7</item>

but this code changes all seekbar, I want to have others with other colors.
Is it possible to change via code avoiding the manifest? (a sub getting the seekbar and the color)
Is it possible to use the above code with javaobject or reflection?

thank you!
 

Brandsum

Well-Known Member
Licensed User
You cannot change individual seekbar color scheme. Though you can change seekbar color scheme of individual activity. Just create individual theme for individual activity in which you want different color of seekbar and set seekbar color scheme to that.

I will recommend you to use a custom view.
 
Last edited:
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
B4XSeekBar will be soon added to XUI Views. It will allow changing the colors.

java_okMdnNFfxc.png
 
Upvote 0
Top