I searched a lot but could not find.
I want the basic gray color of SeekBar
change to white.
All the examples I've found it just change the color of progress.
Can anyone help me?
I searched a lot but could not find.
I want the basic gray color of SeekBar
change to white.
All the examples I've found it just change the color of progress.
Can anyone help me?
You can refer below link for creating Android components such as editext or spinner or seekbar with your own colors for your Android application. It will generate all necessary nine patch assets plus associated XML drawables and styles which you can copy straight into your project.
For ex. for your case you can go to this link and download the zip file for your new seekbar with custom color.
Here you go:
<androidx.appcompat.widget.AppCompatSeekBar
android:progressBackgroundTint="@color/gray"
android:progressTint="@color/white"
Ok, So, there are two things
Seekbar
style through out the appSeekbar
style for specific screenstyle.xml
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="seekBarStyle">@style/AppSeekBar</item>
</style>
<style name"AppSeekBar" parent="Widget.AppCompat.SeekBar">
<item name="android:thumb">@drawable/ic_launcher</item>
<item name="android:background">@drawable/app_seekbar_background</item>
</style>
</resources>
And that's it, all SeekBar
in the app will start using this style.
style.xml
<resources>
<!-- your rest of code -->
<style name"AppSeekBar" parent="Widget.AppCompat.SeekBar">
<item name="android:thumb">@drawable/ic_launcher</item>
<item name="android:background">@drawable/app_seekbar_background</item>
</style>
</resources>
And in the your_layout.xml
file add this
<!-- your rest of code for layout -->
<SeekBar
android:layout_width="100dp"
android:layout_height="40dp"
style="@style/AppSeekBar"
<!-- your rest of code for seek bar-->
/>
This should reflect your style.
And if you want to change anything else for you can come to this style.xml
file and change, no need to change each and places you are using SeekBar
Try creating progress.xml:
Then in your seekbar declaration in xml set: