Skip to content

Instantly share code, notes, and snippets.

@gohilbhagirath90
Last active September 17, 2019 10:43
Show Gist options
  • Save gohilbhagirath90/bac4b525696578fa175f to your computer and use it in GitHub Desktop.
Save gohilbhagirath90/bac4b525696578fa175f to your computer and use it in GitHub Desktop.
change color of scrollbar in scrollview android
Create a scroll bar in drawable(scrollbar.xml) using this
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="45"
android:centerColor="#669C79E7"
android:endColor="#66C0C0C0"
android:startColor="#669C70E2" />
<corners android:radius="8dp" />
</shape>
and add this scroll bar like android:scrollbarThumbVertical="@drawable/scrollbar" to your ListView
@duclt47
Copy link

duclt47 commented Sep 10, 2017

plz tell me how to add android:scrollbarThumbVertical="@drawable/scrollbar" . thanks for reading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment