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

Xcode swift grey bar at bottom of the view, above tab bar

I've got a scene in my iOS app in Xcode in swift. The scene has a View > Scroll View > ContentView (with text fields, labels, images etc.). At the bottom is the tab bar and there is a grey area above (like another tab bar but empty). The question is…
tombomcom
  • 87
  • 1
  • 11
2
votes
1 answer
2
votes
2 answers

TableLayout being truncated when placed inside ScrollView

I have a TableLayout which is populated dynamically with many rows of data. It contains more data than the screen can hold, so I require it to be scrollable. My issue is that when I place the TableLayout inside of a ScrollView, it appears to cut off…
James Wierzba
  • 16,176
  • 14
  • 79
  • 120
2
votes
1 answer

QML TextView change scroll-bar style?

I have a QML TextArea for which I'd like a wider scrollbar. TextArea inherits from ScrollView, and it appears that the only style member in the TextArea class is inherited from ScrollView, so I thought I could just assign a ScrollViewStyle to the…
Kyle Strand
  • 15,941
  • 8
  • 72
  • 167
2
votes
1 answer

Scrollview doesn't scroll past a certain point inside of tabLayout. How do i fix this?

I put a Scrollview inside of a tab on a tabLayout. There is a textview inside the scrollview, but when I try to scroll down, the page cuts short and I can't see all of the scrollview. How do I fix this? This is my XML for the scrollview
2
votes
1 answer

Swift: how to make a ScrollView work with PageControl?

Strctly following this tutorial, in section Paging with UIScrollView, I have just implemented a ScrollView to use as a slideshow with downloaded photos from a previous UICollectionViewController. When scroll view is loaded, it does not work well…
SagittariusA
  • 5,289
  • 15
  • 73
  • 127
2
votes
0 answers

ViewPager Scroll issue on soft keyboard open

This is my activity layout : MainActivity:
2
votes
2 answers

Android: Center a scrollview between header and footer

I am trying to center a ScrollView between a header and footer. Specifically I have a ImageView that has to be at the top, a RelativeView at the bottom and a ScrollView centered between the two. When the content of the ScrollView is not larger than…
Le2e410
  • 323
  • 4
  • 18
2
votes
1 answer

How to implement 'quick return' with scrollview in android

I want to implement 'Quick return header' with ScrollView. My header is not toolbar, it's FrameLayout..
Na Pro
  • 715
  • 1
  • 8
  • 23
2
votes
1 answer

Android- Scrollview : change layout position by dragging

I create Scrollview with 10 layout. I want to change the layout position by dragging. layout_view.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent ev) { final int action = ev.getAction(); …
user434779
  • 21
  • 3
2
votes
1 answer

Assign unique behaviour for two-finger swipe on scrollview

I would like to assign a unique behaviour for two-finger swipe on WKWebView. Referring to this site, I wrote codes as below. It worked, but scrolling on webview got extremely slow. Is there any better way to do it by avoiding slow scrolling? let…
2
votes
0 answers

Android hide content of CoordinatorLayout when scrolling

I have CoordinatorLayout with CollapsingToolbarLayout and TabLayout, ViewPager and TextView in main content. The problem is when I scroll down, TextView and TabLayout don't hide. How can I hide It when I'm scrolling down? Please,…
2
votes
3 answers

List Adapter Only Adding 1 Item to List View

I am creating a comments section for an application, and every time I click the "comment" button, I want to add the comment to my ListView. Unfortunately, my code is only allowing me to add 1 comment to my ListView. Every time I type and click the…
tccpg288
  • 3,242
  • 5
  • 35
  • 80
2
votes
2 answers

Ignore area in ScrollView for scrolling interactions

Assume I have this UI adapted from the ScrollView example: from kivy.app import App from kivy.uix.slider import Slider from kivy.uix.label import Label from kivy.uix.scrollview import ScrollView from kivy.uix.gridlayout import GridLayout from…
zeeMonkeez
  • 5,057
  • 3
  • 33
  • 56
2
votes
1 answer

SwipeMenuListView does not swipe completely, if it's inside a scroll view

https://github.com/baoyongzhang/SwipeMenuListView SwipeMenuListView works fine on its own. But when I encapsulate it inside a vertical scrollview, the menu items of the list view do not swipe properly and all the menu items are not visible on swipe.…