Questions tagged [nestedscrollview]
308 questions
1
vote
0 answers
NestedScrollView dosent scroll all the way to the end of Fragment
I have an Activity open multiple Fragments using using ViewPager and TabLayout. When I try to implement scroll for the fragment using NestedScrollView, I am not able to scroll all the way to the end of the fragment. Is there something missing or…

sbj1811
- 103
- 7
1
vote
1 answer
My Recyclerview is inside in NestedScrollview it is working but scrolling is not working smoothly
I tried almost everything but did not get a perfect smooth scrolling. please help Me. Thanks in Advance
this is my layout

Danish Farooq
- 135
- 1
- 10
1
vote
0 answers
NestedScrollView smoothScrollTo(int x, int y) requires two calls
Title explains it all. Any idea why this is happening? To scroll to the top I need to call:
mainScrollView.smoothScrollTo(0, 0)
mainScrollView.smoothScrollTo(0, 0)
Its child is a LinearLayout and I have…

Michael
- 1,018
- 4
- 14
- 30
1
vote
0 answers
Align Bottom of ColapsingToolbarLayout
I have Activity where I have a CollapsingTableLayout and I'd to display in the bottom of the screen an Editext but I have some problems
When I scroll to bottom, all text not displayed
And when I clic in Editext in the bottom, Toolbar is not…

dz00dz
- 152
- 7
1
vote
1 answer
Laggy RecyclerView
My recyclerview scrolling is laggy. It lags when I started scrolling by touching the Recyclerview, but when doesn't lag when started from the view above it.
I've also disabled nestedscrolling on recyclerview.
Here is my layout:

Charlie
- 148
- 1
- 16
1
vote
1 answer
Recyclerview in Nestedscrollview hides last item when getting back from fragment
I just need some hint on this. I have fragment A & Fragment B.
Fragment A --> Fragment B
At first launch, the layout is of Fragment A is fine (Picture 1: first screen initial /2. first screen when scrolled). But after going to Fragment B, &…

Binod Lama
- 226
- 5
- 24
1
vote
1 answer
Is using different components for different API levels possible?
I don't know if my question makes sense, so I'll try to explain it better.
I'm fairly new to Android, so I'm trying to make an app, and I'm using playing around with the CollapsibleToolBar, and NestedScrollView. It seems that on the newest API there…

Rickybobby
- 245
- 1
- 13
1
vote
1 answer
Scroll only works with two fingers
Im making a layout that has a scroll view, and it has one layout that is implemented multiple times.
The problem is that when I run in my device, the scroll only works if I hold it with one finger and swipe with the another one
I already searched…

Catarina Ferreira
- 1,824
- 5
- 17
- 26
1
vote
4 answers
Android NestedScrollView is Lagging when scrolling up and down
I created a viewpager with 3 fragment in a Coordinatorlayout.
Inside every Viewpager you can find a NestedScrollView with some content.
But if i scroll the content up and down its lagging.
I tested and replaced the NestedScrollView with a normal…

Amir Khan
- 409
- 1
- 6
- 10
1
vote
1 answer
RecyclerView behaviour issue in nestedscrollview
I have a nested scrollview as parent and 2 recyclerviews as its children. What my issue is the recycler view draws it's children at one shot instead of drawing on scroll. How can I prevent this. I read that if we add
…

andro-girl
- 7,989
- 22
- 71
- 94
1
vote
0 answers
Adding a ListView inside A NestedScrollView
Almost everyone is suggesting that I should not use a ListView inside a nestedScrollView.However I need to use a nestedScrollView in order to achieve the CollapsingToolbar behavior.I also can't use RecyclerView as some are suggesting since i am…

E_K
- 2,159
- 23
- 39
1
vote
0 answers
Prevent loading all images in recycleview inside the nestedscrollview instead of one by one image loading
Project contain the main layout with fragment included.
Included fragment contain recycle view inside the "nested scroll view",
I couldn't create multiple recycle view without using nested scroll view
So I am using nested scroll view to view…

Suhad Bin Zubair
- 717
- 7
- 10
1
vote
2 answers
How to scrollTo(x, y) in a RecyclerView inside a NestedScrollView?
Here's my xml code.

IsaiahJ
- 454
- 7
- 19
1
vote
0 answers
Fragments inside NestedScrollView inside CoordinationLayout doesn't work properly
look at youtube screen shot. Why when I am scrolling from bottom app bar doesn't apear? only when I am at top and scroll down it apear?

JavaMan
- 87
- 1
- 5
1
vote
1 answer
Android - FrameLayout is overlapped by CoordinatorLayout when use NestedScrollView inside the Fragment
I'm trying to make a CoordinatorLayout contains a FrameLayout as child. This FrameLayout is later replaced for a Fragment that has as a parent a NestedScrollView.
The problem is that when the fragment is created the FrameLayout is taking a wrong…

Josué de León Santana
- 134
- 5