Questions tagged [android-overscoll]
24 questions
25
votes
2 answers
Remove LazyColumn overscroll effect in Jetpack Compose
I am using version 1.1.0-alpha05 of Jetpack Compose and I wanted to know if there is a way to turn off the scrolling effect for LazyColumn like xml (android:overScrollMode="never")?

Ghasem
- 467
- 5
- 8
16
votes
2 answers
how to use overscroll functionality for listview?
Android's new Overscroll functionality introduced in Gingerbread and discovered some more interesting things.
The functionality to make a a view scroll beyond its limits and then bounce back (almost exactly like iOS) is sort of built into the…

Chirag Shah
- 2,058
- 2
- 20
- 30
10
votes
2 answers
Understanding how to use OverScroller class
I'm looking into adding overscrolling (not the color changing) into my project, but even after reading the API docs and several questions on here I still don't really understand what I need to do to get it to work.
According to the API doc for…

kburbach
- 761
- 10
- 26
10
votes
8 answers
visual indication of over scroll in android
I am trying to add some visual indication, that there are no more pages in the desired fling direction in the ViewPager. However I am struggling to find a place, where to put relevant code.
I have tried extending ViewPager class with following code,…

ekramus
- 101
- 1
- 4
8
votes
2 answers
Samsung Galaxy S2 2.3.5+ not calling overScrollBy()
Seems like Samsung disabled their overscroll (probably due to an Apple suit).
I have an implementation of a view that extends ScrollView and overrides
protected boolean overScrollBy(int deltaX, int deltaY, int scrollX, int scrollY, int…

Rotemmiz
- 7,933
- 3
- 36
- 36
6
votes
1 answer
Adding a new item in a horizontal ListView when over scrolled to the right: Android
I have a Horizontal ScrollView that shows a number of items. I want to show an extra item only when the user over-scrolls to the right.
Then when the user scrolls back to the left this extra item should disappear. The View should normally scroll…

Sunny
- 7,444
- 22
- 63
- 104
5
votes
1 answer
ScrollView setOverScrollMode replacement in API < 9
From documentation, ScrollView.setOverScrollMode() is available in API from version 9
What can I use in API version 7 and 8 as replacement?

Marek Sebera
- 39,650
- 37
- 158
- 244
5
votes
5 answers
Android (list)view overscroll like Sense UI
I've searched some time on google and on stackoverflow but i can't find a solution.
Is there any posibility to get a listview overscroll on Android 2.2 or 2.1 like the sense ui does?!
Like here in my alarm view: AlarmView Sense UI

Fabian
- 2,693
- 2
- 21
- 33
4
votes
1 answer
Overscroll effect from bottom not appearing when using RecyclerView inside SwipeRefreshLayout
I am trying to make a list with the nice pull to refresh feature but when I have a RecyclerView inside an SwipeRefreshLayout the overscroll effect only works when it is refreshing. Even for the bottom of the list. What happens is that the user don't…

emiliopedrollo
- 910
- 6
- 21
3
votes
1 answer
Default overScrollMode value in Android View
Per Android documentation, the default value for overScrollMode is OVER_SCROLL_ALWAYS.
But my ListView did not seem to follow this behavior. It only shows overscrolling behavior when there is enough content to scroll in the list.
I tried to look…

user2041373
- 141
- 1
- 1
- 8
3
votes
0 answers
Android Overscroll Color change in styles
Is there a way to change my overscroll color (for a ListView) in my styles.xml? I really want it to apply to the whole theme of my app.

Eric Cochran
- 8,414
- 5
- 50
- 91
3
votes
0 answers
BounceScrollRunnableDefault is being spammed in the LogCat
Whenever I run my application and try to over-scroll in a ScrollView my LogCat is being spammed with over 50 entries all saying a similar thing:
run(), TimeFraction=0.785, mBounceExtent=31.378126
All with the tag: BounceScrollRunnableDefault
Only…

Pieter888
- 4,882
- 13
- 53
- 74
2
votes
1 answer
Is there any way to force overscroll glow effect in android?
I am developing an application, in which there are scrollviews.
In the emulator, the overscroll effect is shown, in an HTC Legend it is shown, but in my Samsung Galaxy S2 its not... (I DO have gingebread, with overscroll glow enabled).
I like this…

RE6
- 2,684
- 4
- 31
- 57
2
votes
1 answer
How to Disable Swipe Refresh when Bootstrap Modal Appears in Android WebView?
I am building an Android WebView app and website which I load in WebView contain Bootstrap Modal ,it appears as Login/SignUp popup or Choose Image popup.
But problem is that when Modal appears Swipe refresh is working and i am not able to scroll up…

Shah0651
- 307
- 3
- 8
2
votes
1 answer
Overscroll effect is not displayed correctly in NestedScrollView with RecyclerView inside
I have NestedScrollView that contains some views and RecyclerView. But when I scroll RecyclerView, the overscroll effect is only shown in it. How do I display it in NestedScrollView?
I can disable overscroll effect in RecyclerView using…

Mikhail
- 2,612
- 3
- 22
- 37