Questions tagged [nestedscrollview]

308 questions
0
votes
1 answer

RecyclerView inside NestedScrollView smoothScroll

I have a recyclerView inside a NestedScrollView. I know this is not a good practice, but I need a listener for the scroll. The listener consists on notify when the user reached the final of the recyclerView. This have a gridLayoutManager with 3…
0
votes
0 answers

How to prevent toolbar from hiding when my dynamic list is short?

I used NestedScrollview and CoordinatorLayout to hide toolbar when user scrolls a list, and it works, but the problem is when the list is short and won't scroll. I don't want toolbar to get hidden when the list is short and not scrollable. Any…
0
votes
0 answers

How to handle HorizontalScrollView's input inside NestedScrollView?

I have a CoordinatorLayout, inside of it: AppBarLayout, CollapsingToolbarLayout (ImageView and toolbar), and NestedScrollView. Inside NestedScrollView I have HorizontalScrollView. When I horizontally scroll the HorizontallScrollView my…
0
votes
1 answer

Nested RecyclerView dynamic data loading

I have a RecyclerView nested in a scrollView in one of my activities. I implemented dynamic data loading for the recycler so that when x visible objects are left it will automatically issue an API call to fetch the next items. for some reason, being…
0
votes
1 answer

scrollEnabled inside Outer UIScrollView's scrollViewDidScroll requires two swipe

I have UICollectionView inside UITableViewCell. I wanted to enable or disable scrolling of UICollectionView and UITableView based on contentOffset of both. For example, inside UICollectionView's ViewController I have a code - -…
0
votes
1 answer

RecycleView is not visible when its set inside a NestedScrollView in android

How to use RecyclerView inside NestedScrollView? RecyclerView content is not visible after setting adapter. Anyway, I have already tried with RecyclerView inside NestedScrollView by adding a viewgroup like framelayout or relativelayout as a single…
0
votes
0 answers

React Native ScrollView is not working properly

I am developing a survey form. In sum, I want to use ScrollView in scrollable page. Questions are came from json with their type (like type: 'list'/ 'check' / radio / 'autocomplete'), and my High Ordered Component gets and puts questions to phone…
EmreG
  • 135
  • 2
  • 7
0
votes
1 answer

Can't scroll ScrollView in NestedScrollView

I'm using a NestedScrollView with a BottomSheetBehavior. It has one direct child, a ScrollView. When the bottom sheet is expanded, I want to be able to scroll through the contents in the ScrollView, because even when it's expanded, it's still too…
Ruben2112
  • 423
  • 4
  • 18
0
votes
1 answer

recyclerview fast scroll not works after touch event

I have an recyclerview inside nestedscrollview and I can scroll the recyclerview with touch event. But my problem is when I scroll fastly the recyclerview, after picking up my finger, the scrolling stops. But what I want is, it will slide depending…
Muhammed Yusuf
  • 146
  • 2
  • 20
0
votes
0 answers

Two NestedScrollView doesnt scroll

i have this two nested scroll views. the problem is that, it is only the left view that scroll while the right doesnt scroll at all. The views contains two different set of items in which i want them to scroll independently of each other.
0
votes
1 answer

How to Handle Scrollview Slow Android

im used two recyclerview in one layout, and if i want to both recylerview can scroll, i adding Nested Scrollview. Maybe like this:
Megi Fernanda
  • 263
  • 1
  • 4
  • 15
0
votes
1 answer

Content inside NestedScrollview is pushed down

I have a screen contain collapsable toolbar (AppBarLayout) and scrollable content with NestedScrollviews My Main layout:
meaholik
  • 440
  • 5
  • 19
0
votes
2 answers

RecyclerView inside NestedScrollView scrolling issue

Iv seen many threads like that, but non of them helped me. When i use RecyclerView inside NestedScrollView im having scrolling issues - stuck. I know its because that is scroll inside scroll, rv.setNestedScrollingEnabled(false); is not working for…
0
votes
1 answer

NestedScrollView inside a ScrollView is not scrolling for API17

I have a NestedScrollView inside a ScrollView having Relative layout as the parent view. Now, when i run my app on Android 6.0 or API23 its running smoothly and the NestedScrollView is also scrolling. But, when i run my app on the Android 4.2.2 or…
beginner
  • 528
  • 4
  • 16