Layout container for a view hierarchy that can be scrolled by the user, allowing it to be larger than the physical display.

learn more… | top users | synonyms

48
votes
8answers
38k views

How can I put a ListView into a ScrollView without it collapsing?

I've searched around for solutions to this problem, and the only answer I can find seems to be "don't put a ListView into a ScrollView". I have yet to see any real explanation for why though. The ...
59
votes
11answers
101k views

Scrollview vertical and horizontal in android

I'm really tired looking for a solution for vertical and horizontal Scrollview. I read that the any view/layout implements this feature in the framework but I need something like this: I need to ...
113
votes
5answers
47k views

Android - HorizontalScrollView within ScrollView Touch Handling

I have a ScrollView that surrounds my entire layout so that the entire screen is scrollable. The first element I have in this ScrollView is a HorizontalScrollView block that has features that can be ...
16
votes
8answers
14k views

Listview inside ScrollView is not scrolling on Android

I am having trouble with scrolling listview inside a scrollview. I an having an activity which has some EditText in the top part and then a tab host with two tabs which have one listview each. When ...
18
votes
3answers
12k views

Grid of images inside ScrollView

I'm trying to create a screen with both text and images. I want the images to be laid out like a grid, as shown below, but I want them to have no scroll functionality other that the one provided by ...
28
votes
3answers
8k views

Android: how to check if a View inside of ScrollView is visible?

I have a ScrollView which holds a series of Views. I would like to be able to determine if a view is currently visible (if any part of it is currently displayed by the ScrollView). I would expect ...
28
votes
1answer
6k views

How can I change the OverScroll color in Android 2.3.1?

Since Android 2.3.1 there is a new feature for ScrollViews and Lists called OverScroll. With android:overScrollMode="never" I can turn it off, but if i don't wan't to turn it off how can I change ...
17
votes
5answers
16k views

Scrolling with Multiple ListViews for Android

I'm completely stumped on this one. I have three different lists that need to be displayed on the screen. It's completely possible that the lists will extend past the bottom edge of the screen, so I ...
9
votes
3answers
21k views

Android ScrollView layout problem

I have several ListViews in a LinearLayout. It's listing things by day, so I have a TextView containing "Sunday:" followed by a list of items, followed by a "Monday" TextView, etc. Works great, but ...
7
votes
6answers
11k views

ScrollView Inside ScrollView

I Know people from Google have asked us not to put Scrollable view inside another Scrollable view but is there any official statement from them directing us not to do so?
17
votes
8answers
9k views

Android: Detect when ScrollView stops scrolling

I'm using a ScrollView in Android and where the visible portion of the ScrollView is the same size as one of the cells inside the Scrollview. Every "cell" is the same height. So what I am trying to do ...
18
votes
3answers
15k views

Swipe/Fling tab-changing in conjunction with ScrollView?

The best I could find on this particular issue (although I do not use a Gallery): ScrollView and Gallery interfering - doesn't really give a specific answer though. And my implementation does not use ...
2
votes
2answers
10k views

ListView in ScrollView potential workaround

I've done all of the research on the matter. I know that Google thinks it's pointless and that the developers, know that it's not. I also know that there is no known workaround, but I know that I am ...
10
votes
2answers
4k views

Gesture detection and ScrollView issue

I'm trying to create a layout with a ViewFlipper containing ScrollViews. The idea is to detect horizontal swipes to move to previous/next ScrollView. Moreover, the ScrollView contains another ...
20
votes
4answers
47k views

How to use ScrollView in Android?

I am doing my xml like below but the text is more than the screen size, so what to do for making scroll view <?xml version="1.0" encoding="utf-8"?> <TableLayout ...
7
votes
5answers
6k views

Webview in Scrollview

I have to place WebView into ScrollView. But I have to put some views into the same scrollview before webview. So it looks like this: <ScrollView android:layout_width="fill_parent" ...
6
votes
2answers
3k views

ScrollView inside Gallery, both scrolling independently

I have a Gallery with an adapter which supplies it ScrollViews as its child views. I need to make sure that the touch events are handled correctly and as expected: When the user scrolls ...
0
votes
3answers
6k views

Android: Synchronized scrolling of two different views

I have a tricky problem related to synchronized scrolling of two different views. I've made my own custom grid view widget, which has "sticky" views to the left and top that only in one direction with ...
8
votes
3answers
11k views

Disable ScrollView action

In my application i've a line for increasing the width of a widget(by dragging the line to right/left) and i've the ScrollView enabled in the same activity. I need to disable the scroll view action ...
0
votes
3answers
7k views

Images in ScrollView in android

In my app I want to place a .png file and I want it to be viewed as a scrolled image at both landscape and portrait modes, please, suggest a code or example....
35
votes
3answers
23k views

Call removeView() on the child's parent first

Solution: ((ViewGroup)scrollChildLayout.getParent()).removeView(scrollChildLayout); //scrollView.removeView(scrollChildLayout); Use the child element to get a reference to the parent. Cast the ...
5
votes
3answers
12k views

JQM horizontal scroll navbar

i"ve been hunting the docs and can't seem to find a way to make a scrollable horizontal navbar in jQuery mobile has anybody accomplished this yet ? here's what i have for navbar so far <div ...
18
votes
5answers
11k views

Can I scroll a ScrollView programmatically in Android?

Is there a way to scroll a ScrollView programmatically to a certain position? I have created dynamic TableLayout which is placed in a ScrollView. So I want that on a specific action (like clicking a ...
2
votes
2answers
18k views

jQuery Mobile Scrollview

So I'm trying to make a scrollable list: <div data-role="content-primary" class="list" style="height:100%; overflow:scroll" data-scroll="y"> <ul data-role="listview" id="mainList" > ...
25
votes
4answers
18k views

How to set the color of an Android ScrollView fading edge?

I have an Android scrollview with a white background. The fading edge is a white translucent gradient. I would like to change it be black instead of white. I have a ListView in the same project with a ...
0
votes
3answers
3k views

Android scrollbar with a extra View (screenshot included)

i need some help again! At first i really thought it was some kind of ScrollView tweak to achieve something like this: But, as far as i know, it isnt, so, how can i achieve this kinda of custom ...
3
votes
2answers
3k views

Android: Notify Scrollview that it's child's size has changed: how?

When I enlarge the size of the content of a scrollview, the scrollview takes a while to get to "know" this size change of it's child. How can I order the ScrollView to check it's child immediately? I ...
1
vote
4answers
5k views

Get reference to my WPF ListBox's ScrollViewer in C#?

I think this should be easy but I'm having a tough time with it. How can I get a reference to my ListBox's scrollviewer in C#? I've tried pretty much everything I can think of. The ListBox is in a ...
6
votes
4answers
11k views

ListView inside a ScrollView [duplicate]

Possible Duplicate: Listview inside ScrollView is not scrolling on Android I have a ListView inside a ScrollView and the problem is that the ScrollView is scrolling but ListView doesn't ...
8
votes
1answer
191 views

How to work, when listview inside the scrollview?

I doing this In Android 1.6 and 2.2 ... I have One ScrollView in the Activity (All the content in the ScrollView) ... And Second is, One ListView in the Activity .... When I Scroll ListView, at ...
32
votes
6answers
6k views

ViewPager inside a ScrollView does not scroll correclty

I have a 'page' that has a number of components on it, and who's content is longer than the height of the device. Fine, just put all of the layout (the entire page) inside a ScrollView, no problem. ...
30
votes
8answers
13k views

How to always show scrollbar

The scrollbar in my scrollview is only visible when I start scrolling. How can I always show it?
8
votes
1answer
5k views

Android: Detecting When ScrollView Hits Bottom [duplicate]

Possible Duplicate: How to trigger an event when scrollView reach the bottom with Android? I have been trying for an hour or so to detect when my scrollView gets to the bottom of the ...
11
votes
2answers
2k views

Android::VideoView inside a ScrollView

I have a VideoView that is inside a scrollView. When I scroll the scrollView, the VideoView does not scroll with it. It is like its position is fixed. How can I scroll the VideoView correctly with the ...
7
votes
1answer
3k views

Changing the color of over scroll in scrollview in android

I have a small problem with my scroll view. Whenever a scroll view has over scrolled, it shows a yellow gradient (in my device, it may vary for other devices) at edges of scroll view. It can be ...
7
votes
3answers
4k views

Android ScrollView adds extra padding on top and bottom of child imageview

I have a problem with rendering a ScrollView. Essentially, the layout is fixed header and footer with a scrollview in the middle. The idea is that when the screen keyboard is activated for the content ...
6
votes
1answer
4k views

Overriding onTouchEvent competing with ScrollView

From a simplistic overview I have a custom View that contains some bitmaps the user can drag around and resize. The way I do this is fairly standard as in I override onTouchEvent in my CustomView ...
12
votes
7answers
6k views

Stop ScrollView from auto-scrolling to an EditText

Seems to be a common problem without a great solution that I have found. Goal is to stop a ScrollView from auto-scrolling to an EditText (or any view for that matter) that has focus. You have a bunch ...
10
votes
1answer
6k views

Change scrollbar color in Android

Is it possible to change the color or appearance of the scrollbar in a ScrollView or ListView?
9
votes
2answers
4k views

Scroll to last line of TableLayout within a ScrollView

I want to have a dynamic table, with rows added over time as a result of user interaction, using a TableLayout inside a ScrollView. This works fine, but when I want to scroll to the end of the table ...
4
votes
3answers
2k views

UIDatePicker inside UIScrollView with pages

I have a UIScrollView with 2 pages, and I can scroll horizontally between them. However, on one of my pages, I have a UIDatePicker, and the scroll view is intercepting the vertical touch events so I ...
6
votes
2answers
9k views

Android Scrollview in RelativeLayout with ButtonBar

I'm trying to implement a login view where several EditTexts and a logo are displayed on the screen with a ButtonBar at the bottom, something like this: The problem is that on very small screens, ...
2
votes
1answer
3k views

Android ScrollView fading edge

by default scrollview's fading edge is visible only if it is possible to scroll in that direction. How can I make it visible at all times? I don't want to put any drawables on top or something like ...
2
votes
1answer
825 views

Graphical issue with spinner control in Android

My first (old) Android app (Suspension Calculator) is showing a problem I cannot find a solution for: the spinner control on some spinners is showing transparent lines in unwanted places. The pattern ...
1
vote
2answers
2k views

PDF Generation From UIScrollView + iphone

I want to generate a pdf of UIScrollView whose content size is near about 320*2000. if i use current graphic image context to capture the scroll view layer, then it only captures the visible part of ...
0
votes
1answer
1k views

Drag and drop for linearlayout's child views

I have layout with 5 different child views, Child views are relativelayout with number of child views inside it, and all are different too. Hence i am using scrollview as root container like this: ...
0
votes
5answers
2k views

How to make horizontal scrolling view in android

I Want to make this type of horizontal scrolling , look at pictures >>>>............................................ XML file saved at res/layout/main.xml: Am i right my main.xml file has worng? I ...
6
votes
3answers
4k views

Scrollview doesn't swipe when it's too short to scroll

I'm pretty new to Android app development, and I've been playing around with swipe gestures using Android's SimpleOnGestureListener and a ViewFlipper. There are 3 children of the ViewFlipper, and ...
3
votes
2answers
2k views

Why do items disappear when I scroll the listView?

My application use a ListView which display differents items in the cell. it must have photo and name, but it happens to have description and icons. The problem is: when I scroll the ListView and ...
2
votes
1answer
3k views

Android: how to listen for scrolling events?

is there a way to establish a listener on the process of scrolling in a ScrollView or a HorizontalScrollView?

1 2 3 4