How to set scrollbar height on ScrollView in android -


how set scrollbar height on scrollview in android. have set custom color scrollbar of scrollview using android:scrollbarthumbvertical="@drawable/scrollbar"

below scrollbar.xml

<?xml version="1.0" encoding="utf-8"?> <shape android:shape="rectangle"     xmlns:android="http://schemas.android.com/apk/res/android"      >     <gradient         android:angle="45"         android:centercolor="#65ff8215"         android:endcolor="#87fd2125"         android:startcolor="#65ff8215"         />     <corners android:radius="20dp" /> </shape> 

how can change height of scrollbar ? want set height of scrollbar per image enter image description here


Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -