Questions tagged [scrollview]

Be sure to use a **platform specific** tag. Use this tag only for the most general questions about scroll views on all platforms. A scroll view is a view that can be scrolled by the user, inside a containing area. One of the basics of all modern UX.

A view that can be scrolled by the user, inside a containing area.

It is essential to use for Android's ScrollView. It is essential to use for the iOS ScrollView.

6948 questions
2
votes
0 answers

ScrollView not smooth scroll

Why do not scroll smoothly? Very slowly scrolls. Where is the mistake? 7 images. content_main.xml
The Tronuo
  • 31
  • 4
2
votes
3 answers

Scrollview inside fragment not scrolling at all

I am using three fragments in one activity with tablayout. In fragment I have 12 edittext so I put them into the scrollview.But scrolling is not working and I can see only few edittexts. fragment.xml
Parsania Hardik
  • 4,593
  • 1
  • 33
  • 33
2
votes
0 answers

TextView Scroll Change Listener

There is a good thing in api 23 - TextView.setOnScrollChangeListener. Does anyone know, is it real to make this listener for smaller api? I know that i can use ScrollView, but I have some trouble with it and don't want to use it. Thank you.
2
votes
1 answer

nesting framelayout inside a scrollview?

I am having an issue that I am not sure the best way to go about it. I need to have all widgets inside a scroll view. Below is the layout and I used the framelayout because I need to overlap a bunch of images. Yet, that entire framelayout cannot be…
gmmo
  • 2,577
  • 3
  • 30
  • 56
2
votes
1 answer

Adjust Scrollview height when keyboard is hidden/visible

I have an activity with bunch of controls (EditText, Spinner etc.), with one of the EditText's having a custom keyboard. Here is how my XML looks like
Abhijit
  • 89
  • 12
2
votes
3 answers

Add content in bounce margin of ScrollView in React Native?

In my app I'm using to view pages of a book scrolling horizontally. When a user gets to the end of the there is a bounce that shows a white area to the right that is only visible if the user drags the last page to the…
Dev01
  • 13,292
  • 19
  • 70
  • 124
2
votes
0 answers

Lock Navigator in react-native

Is it possible to prevent the Navigator in react-native to render the previous scene? I'm having a conflict between a scrollView and my Navigator, I set the Navigator to render the scene FloatFromBottom, so when I scroll down it scrolls the content…
Gabriel Lopes
  • 943
  • 6
  • 11
  • 20
2
votes
2 answers

How to programatically set the UIScrollView to be scrolled at the top

When running my app theres a gap on the top which appears to be because the scrollview isn't scrolled completely at the top (right under the navigation bar). I've tried a few things such as setContentOffset(CGPoint(x:view.frame.size.width,…
Dimitre Bogdanov
  • 395
  • 1
  • 5
  • 18
2
votes
1 answer

Android: nested ScrollViews and HorizontalScrollViews, interception

I have a problem using ScrollViews inside of ScrollViews in Android. I know it's not kind of best practice, but I need to get it working. public static void disableScrollOnParentHorizontalScrollView(View v) { v.setOnTouchListener(new…
user2331454
  • 345
  • 1
  • 3
  • 14
2
votes
0 answers

How to smoothen the swiping in viewpager

In my application I'm using view pager for vertical scroll for swiping the pages. Vertical scrolling working fine. An issues is While swiping the pages,it is not swiping smoothly , it is stucking while swiping.Can Anyone give me solution for my…
developer
  • 319
  • 1
  • 4
  • 15
2
votes
0 answers

How to implement stack transformation in vertical viewpager

How to implement stack transformation in VerticalViewPager,Here is my code which i have implemented VerticalViewPager with stack transformation but the issue is it is fading out, I want to remove fading out while swipe up the page. public class…
user3069590
  • 129
  • 1
  • 2
  • 11
2
votes
4 answers

how to save List-view position when back to previous Activity in Android

I have a ListView with huge amount of data.But when i go to next page on ListView Item Click and come back to ListView. I want the list to be scrolled to the same point that it was previously.Can someone help to achieve this. I tried this code.List…
p. ld
  • 585
  • 3
  • 10
  • 23
2
votes
0 answers

swipe not working in scrollview

i am using this calss for detecting swipe gestures, it works fine except with scrollView. either the scrollview or its children absorb my swipes so it fails to catch them. in my activity // Swipe view = (View) findViewById(R.id.layoutClean); …
MaggotSauceYumYum
  • 402
  • 1
  • 5
  • 23
2
votes
1 answer

react-native android nested scrollview and listview not passing control to each other

In react-native android, when we have nested scrollview and listview, then the control is not being passed from scrollview to listview and vice-versa.. https://www.youtube.com/watch?v=oC2iHhw3Ddk this is the link to the interaction that I am trying…
rashmi chachan
  • 309
  • 1
  • 2
  • 13
2
votes
1 answer

Android relative layout inside scrollview not scrolling in landscape mode

Hi I have put all my UI elements inside a relative layout and then put the relative layout in the scrollview to achieve screen scrolling. But the layout is not scrolling in landscape mode.What am I missing here. any idea? Thanks, P Update: The view…
user2622786
  • 779
  • 3
  • 9
  • 21
1 2 3
99
100