93 questions
0 votes
1 answer
117 views
dataSetChanged in List Adapter displays scrollbars in Recycler View each time
I have Recycler View (inside SwipeRefreshLayout) with vertical scrollbar with custom thumb color: <androidx.swiperefreshlayout.widget.SwipeRefreshLayout android:id="@+id/...
0 votes
0 answers
142 views
Draw scrollbar over RecyclerView.ItemDecoration sticky header
I am extending RecyclerView.ItemDecoration to define a class that enables a RecyclerView to make header view's sticky when they are at the top of the RecyclerView. For this, I need to override ...
0 votes
1 answer
266 views
How to set the attribute "android:scrollbars" programmatically for a view in Xamarin Android C#?
I am using NestedScrollView control in my Xamarin Android application as recommended in Android forums. In which the scrollbars are not visible, but the scrolling is working. I want to enable to ...
1 vote
1 answer
1k views
Keep fast-scroll bar in recyclerview from fading
Is there a possibility to keep the scroll-bar of a fast-scrolling recyclerview from fading? Right now I have this recyclerview: <androidx.recyclerview.widget.RecyclerView android:id="@+id/...
1 vote
1 answer
3k views
How to make recyclerview scrollbar always visible?
I need to make RecyclerView Scrollbar always visible. Scrollbar hiding is the default feature of RecyclerView. How can I do it? Any help would be appreciated. Thanks in Advance.
1 vote
0 answers
165 views
How to change width of track for horizontal scrollbar?
I have got a horizontal recyclerView which use horizontal custom scrollbars but i have an issue, thumb is over than the track, how can i specify the width of track for scrollbar? here is my ...
1 vote
1 answer
900 views
Android How to change scrollbar color in Spinner
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....
0 votes
1 answer
181 views
ListView scrollbarStyle not working properly in a Widget
I'm trying to do a Widget with a ListView, but I want to show the ScrollBar really in the right side, without any padding. I want it like the gmail calendar Widget. I will show you how with pictures: ...
3 votes
1 answer
3k views
Android official alphabet fast scroll view
Is there an Android official alphabet fast scroll view? If yes, how to use it? And I find some third party lib like MaterialScrollBar, but I prefer official version if it exists. Any help is very ...
6 votes
1 answer
3k views
Scrollbar on Top Side in Horizontal RecyclerView
I am working on the Simple demo of Horizontal RecyclerView. I want to display scrollbar along with the recyclerview. So I have added android:scrollbars="horizontal" and android:scrollbarSize="5dp" in ...
0 votes
1 answer
1k views
How to define position of scrollbar view inside recyclerview?
I am trying to do something like this: I just need to put the scrollbar of the recycler in that position overlaping the views and no more. Why? Easy, this interface is a little complex to achieve ...
0 votes
0 answers
58 views
ScrollBarStyle didn't show in apps
i tried make a custom scrollbar style, but it show nothing when the app is running, here is my style <style name="scrollbar_shape_style"> <item name="android:...
3 votes
1 answer
435 views
Hide scrollbars in complete application
I need to remove scrollbars from the complete application. I want to avoid the trouble of writing android:scrollbars="none" in all the ScrollViews defined in my application. Now, here is what I ...
3 votes
1 answer
3k views
Scrollview doesn't show scrollbar always - android?
I have bellow xml : <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/scrollProvince" android:...
0 votes
2 answers
2k views
Scrollable progress bar
I'm trying making a scrollable horizontal progress bar. Therefore I put the progress bar in Horizontal scroll view and set progress bar min width to 1000 (it's double my screen width). But I still can'...