Questions tagged [nestedscrollview]
308 questions
0
votes
0 answers
Recyclerview Layout below a NestedScollview
In my application I have a NestedScrollView which holds a TextView. I want to add A RecyclerView under the NestedScrollView but it doesn't show anything.
Here is my Layout xml file
activity_main.xml

Yogesh Yadav
- 133
- 3
- 11
0
votes
1 answer
RecyclerView inside NestedScrollView : make horizontal scroll easier to do
I'm developping a Android app, and I got a vertical NestedScrollView, who take all my screen, and inside multiple hoizontal RecyclerView. It's work, but the horizontal scroll is really hard to achieve.
I mean, when I scroll horizontally the gesture…

gouy_e
- 188
- 2
- 7
0
votes
1 answer
Nested scroll view goes behind collapsing toolbar in support design
here is a NestedScrollView inside CoordinatorLayout

Deepak
- 33
- 8
0
votes
3 answers
Android: how to solve OutOfMemoryError
I am using an NestedScrollView for my layout to display a TextView as a header with a HorizontalScrollView to display slidable pictures.
Here is an example:

Lars H.
- 107
- 1
- 5
0
votes
3 answers
sizing issue of gridview in nested scrollview
you can see gridview in the image which is not wrapping whole nestedscrollview Guys please help me I am stucked in this code, I need a collapsing toolbar layout and I succeed too but the gridview inside the nested scrollview is not wrapping total…

Sanket Patel
- 86
- 1
- 11
0
votes
1 answer
Pin Floating Action Button to Toolbar/Action Bar
I have a CoordinatorLayout with CollapsingToolbarLayout and NestedScrollView and FloatingActionButton. In the CollapsingToolbarLayout there is a ImageView which has layout_collapseMode set as parallax. FloatingActionButton is pinned to…

Pritam Kadam
- 3,203
- 4
- 19
- 41
0
votes
1 answer
CoordinatorLayout with NestedScroll and CollapsingToolbarLayout doesn't scroll to bottom
I am having an issue with CoordinatorLayout and CollapsingToolbarLayout, the toolbar is working fin, but when I scroll the activity to bottom, it does never get to the bottom it only gets until the 2nd row before the last one.
Is there any problem…

Alejandro Cumpa
- 2,118
- 1
- 24
- 45
0
votes
1 answer
how to make viewpagers fragment portion as scrollable in android?
i m using viewpager now before viewpager there is a tablayout and videoview as well.so my viewpager fragments contents are large then it must show inside scrollview so how can i show viewpagers fragment view in scrollable area ? once i m taking…

Erum
- 790
- 3
- 14
- 36
0
votes
0 answers
Nesting a recycleview in a nestedscrollview using the coordinatorlayout
The effect Im after is that that views inside the nestedscrollview should scroll to the top of the screen removing the toolbar with "scroll|enterAlways"
Once that occurs the recycleview should become scrollable.
Currently the recycleview scrollers…

aidanmack
- 518
- 1
- 5
- 16
0
votes
1 answer
Issues with Coordinator Layout
I do not want the toolbar to collapse in the coordinator layout below. No matter what I do it collapses (the tabs do not collapse but the toolbar with the title does).
Second issue is that the nestedscrollview in the viewpager has a few EditTexts.…

dejavu89
- 754
- 1
- 7
- 17
-1
votes
2 answers
Unable to add different widgets in a single scroll view in flutter
So, i am having a container with height as the screen height, and singlechildscrollview as its child.
code:-
Stack(
children: [
Container(
alignment: Alignment.center,
height:…

Deepak Lohmod
- 2,072
- 2
- 8
- 18
-1
votes
2 answers
Python kivy : Nested scrollviews
I have a nested horizontal scroll view inside a vertical scroll view, I followed many links, found nothing, I need a clear scrollview so that if I scroll nested horrizontal scrollview it will scroll without disturbing the parent vertical scrollview,…

Fadi Sadaka
- 11
- 2
-1
votes
1 answer
How do I make the height of a View match the space above a NestedScrollView?
I want to have a MapView taking all the space above a persistent bottom sheet (NestedScrollView) as I already have and you see on the image below.
For the MapView I'm using android:layout_height="238dp". I have tried to replace it for…

leoneboaventura
- 415
- 1
- 3
- 13
-1
votes
1 answer
Button over keybord are squeezes. Why scroll doesn't work?
I have a screen with button "Next" over keyboard. I added scroll. If keyboard open and space is not enough we need to use scroll. But with a little space scroll does not appear, and button are…

Pavlo Tykhonov
- 19
- 5
-1
votes
1 answer
Hide floating action button
Update: I have solved this problem just by listen to the scroll change event of the NestedScrollView and do the appropriate handling there.
I'm following this tutorial to animate showing and hiding of my FloatingActionButton. But it doesn't really…

congtrungvnit
- 635
- 1
- 10
- 16