How can I change the default color of scrollbar present in the spinner? is it possible to do it on an app level?
<Spinner
android:id="@+id/location"
style="@style/Widget.AppCompat.Spinner.Underlined"
android:layout_width="0dp"
android:layout_height="45dp"
android:backgroundTint="@color/input_borde"/>
You can with
android:scrollbarThumbVertical="@drawable/youdrawableFor example:
Spinners in Android doesn't have a Scrollbar, the scrollbar exists within the listView maintained inside the Spinner, and has no public access.
There's a run-time way to override it in the link below
Resource: URL
Custom spinner: URL