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
Comments
Post a Comment