I have a quite complex View build-up, and as a part of that, I have a ListView inside a LinearLayout within a ScrollView (and quite a lot more components, but they do not matter in this issue).

Now the whole activity scrolls nicely as it should, but the ListView has a limited height, and when the Items inside it surpass the height, the disappear of my screen. I've tried to place the ListView inside it's own ScrollView, but this doesn't work. When I try to scroll on the ListView, the main ScrollView is selected and my screen scrolls instead of the ListView.

My question may sound easy, but I haven't been able to fix this... Is it possible to make the ListView scrollable aswell?

The relevant XML:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

    <LinearLayout android:id="@+id/GlobalLayout" 
                  android:layout_width="fill_parent"
                  android:layout_height="fill_parent"
                  android:orientation="vertical" >

        <ListView android:id="@+id/EndpointList"
                  android:choiceMode="multipleChoice"
                  android:layout_height="175dip"
                  android:layout_width="fill_parent" />

    </LinearLayout>

</ScrollView>
link|improve this question

Show us the XML – Blundell Mar 15 '11 at 13:45
feedback

5 Answers

Instead of ListView with other layouts inside ScrollView create one ListView with header and footer.

Add views that should be above ListView as a header:

addHeaderView(View v)

and that below as a footer:

addFooterView(View v)

Put everything what should be above ListView to header of ListView and the same with footer.

    LayoutInflater inflater = LayoutInflater.from(this);
    mTop    = inflater.inflate(R.layout.view_top, null);
    mBottom = inflater.inflate(R.layout.view_bottom, null);

    list.addHeaderView(mTop);
    list.addFooterView(mBottom);
    // add header and footer before setting adapter
    list.setAdapter(mAdapter);

In result you'll get one scrollable view.

link|improve this answer
Could you explain a little more about this option, I mean I've read about it, but I don't see how this would replace a list... If I were to add a new headerView, won't it replace the one that's there already? – ThaMe90 Mar 15 '11 at 14:13
It doesn't replace a list, just solves problem with ScrollView by eliminating it. Header and Footer can be any kind of View. – dziobas Mar 15 '11 at 14:29
But then, after adding a few Headers, the height of the total LinearLayout would only increase, am I right? If so, that was exactly what I wanted to avoid with the ListView... – ThaMe90 Mar 15 '11 at 14:34
feedback

It is widespread problem with ListView inside ScrollView

I found an article with solution but not tried yet, maybe it helps you

link|improve this answer
1  
-1: could you please be a bit more informative! (I will remove the down vote if you edit your answer – WarrenFaith Mar 15 '11 at 13:47
updated comment – Max K. Mar 15 '11 at 13:54
I wish not to use hacks, but pure correct code... But I'll look at it nevertheless... – ThaMe90 Mar 15 '11 at 13:57
look at the @dziobas's solution, i think it will also work for you – Max K. Mar 15 '11 at 13:58
I've tried the solution mentioned in the article you linked to, but that doesn't seem to work for me... – ThaMe90 Mar 15 '11 at 14:25
show 1 more comment
feedback

I would like to just note something for the video

The listview is working once every x touches not because you placed it inside a linearlayout but because you are touching the the divider...

the scrollview will then consider that the place you touched does not have children to dispatch the motionevent to... so it calls the super.dispatchTouchEvent which is in this case the View.dispatchTouchView hence the listview.onTouchEvent.

When you touch inside a row the scrollview which is really a viewgroup will send the dispatch to the children in your case the textview and never calls the one of the view so the listview do not scroll.

Hope my explanation was clear enough to point out why is it not working.

link|improve this answer
That makes sense, thanks for the explanation. – ThaMe90 Feb 6 at 11:25
feedback

ListView has a vertical scroll property with it. Have you tried setting android:scrollY property in th xml?

link|improve this answer
Doesn't that set the offset of the initial state to the set amount of pixels, inches, whatever? – ThaMe90 Mar 15 '11 at 13:53
yes you are right. But the problem which you are facing is actually a common problem and will be faced by anyone whoever tries to put listview in scrollview. As both of them have a scroll so they screw up each other. as you can see in this link androidforums.com/application-development/… there is one hackish way provided in this link you can try that nex-otaku-en.blogspot.com/2010/12/… – Shaista Naaz Mar 15 '11 at 15:42
Hmm, not much help from those links... :( – ThaMe90 Mar 15 '11 at 15:48
feedback
up vote 0 down vote accepted

Actually, the way that I have it set up is really working... Placing a ListView in a LinearLayout within a ScrollView. Just avoid that the ListView is the direct child of the ScrollView, and it will work out just fine...

Just be aware that if there aren't enough items in the ListView to fill it so it goes 'off screen', that it won't scroll (kind of logically though). Also note that when you have enough items to scroll through, you need to keep pressing on an item in the ListView to make it scroll, and half of the time, focus is given to the global scrollview in stead of the ListView... To avoid this (most of the time), keep pressing on the most top or most down item, depending on which way you want to scroll.This will optimize your chance to get focus on your ListView.

I've made a video that it is possible, am uploading it now to YouTube...

Video is http://www.youtube.com/watch?v=c53oIg_3lKY. The quality is kinda bad, but it proves my point.

Just for a global overview, I used the ScrollView to be able to scroll my entire activity, the LinearLayout for the Activity's layout, and the ListView to, well, make the list...

link|improve this answer
Placing a ListView in a LinearLayout within a ScrollView will not work – kellogs May 5 '11 at 21:37
Well it worked for me... the video prooves it... – ThaMe90 May 6 '11 at 7:22
Besides, I never said that it worked well, just that it worked... – ThaMe90 May 6 '11 at 7:24
can you give more code – pengwang Jul 24 '11 at 12:31
More code about what specifically? – ThaMe90 Jul 25 '11 at 8:52
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.