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 only reason I can seem to find is that Google doesn't think you should want to do that. Well I do, so I did.

So the question is, how can you place a ListView into a ScrollView without it collapsing to its minimum height?

link|improve this question

It sounds like you found out why. – Justin Aug 16 '10 at 18:02
1  
Their argument against it seems to be "because you shouldn't have one scrollable thing inside another". And why not, exactly? I'm not an Apple fan, far from it, but they seem to think this is a reasonable thing someone might want to do. – DougW Aug 16 '10 at 18:08
1  
Because when a device uses a touch screen there is no good way to differentiate between two nested scrollable containers. It works on traditional desktops where you use the scrollbar to scroll a container. – Romain Guy Aug 16 '10 at 18:20
6  
Sure there is. If they touch inside the inner one, scroll that. If the inner one is too large, that's bad UI design. That doesn't mean it's a bad idea in general. – DougW Aug 16 '10 at 19:05
1  
Just stumbled on this for my Tablet app. While it doesn't seem to be too worse on Smartphone, this is horrible on a tablet where you easily could decide whether the user wants to scroll the outer or inner ScrollView. @DougW: Horrible design, I agree. – jellyfish Jul 6 '11 at 16:47
show 2 more comments
feedback

5 Answers

up vote 15 down vote accepted

Using a ListView to make it not scroll is extremely expensive and goes against the whole purpose of ListView. You should NOT do this. Just use a LinearLayout instead.

link|improve this answer
Not arguing with your point, but can you cite a source that talks about how expensive it is and why? Re-engineering a list of items in a LinearLayout seems much more expensive with regard to dev time. I'd like to know why it's so expensive, and make that trade off decision myself. – DougW Aug 16 '10 at 19:07
7  
The source would be me since I've been in charge of ListView for the past 2 or 3 years :) ListView does a lot of extra work to optimize the use of adapters. Trying to work around it will still cause ListView to do a lot of work a LinearLayout wouldn't have to do. I won't go into the details because there's not enough room here to explain ListView's implementation. This also won't solve the way ListView behaves with respect to touch events. There's also no guarantee that if your hack works today it will still work in a future release. Using a LinearLayout would not be much work really. – Romain Guy Aug 16 '10 at 19:52
Well that's a reasonable response. If I could share some feedback, I have much more significant iPhone experience, and I can tell you that Apple's documentation is far better written with regard to performance characteristics and use cases (or anti-patterns) like this. Overall, the Android documentation is far more distributed and less focused. I understand there are some reasons behind that, but that's a long discussion, so if you feel compelled to chat about it let me know. – DougW Aug 16 '10 at 20:23
1  
I'm not sure this is also true for a ListView inside a HorizontalScrollView or vice versa. Sounds like a perfectly legal use case for me? – andig Feb 23 '11 at 8:57
1  
You could easily write a static method that creates a LinearLayout from an Adapter. – Romain Guy Dec 19 '11 at 20:05
show 2 more comments
feedback

Here's my solution. I'm fairly new to the Android platform, and I'm sure this is a bit hackish, especially in the part about calling .measure directly, and setting the LayoutParams .height property directly, but it works.

All you have to do is call Utility.setListViewHeightBasedOnChildren(yourListView) and it will be resized to exactly accommodate the height of it's items.

    public class Utility {
        public static void setListViewHeightBasedOnChildren(ListView listView) {
            ListAdapter listAdapter = listView.getAdapter(); 
            if (listAdapter == null) {
                // pre-condition
                return;
            }

            int totalHeight = 0;
            for (int i = 0; i < listAdapter.getCount(); i++) {
                View listItem = listAdapter.getView(i, null, listView);
                listItem.measure(0, 0);
                totalHeight += listItem.getMeasuredHeight();
            }

            ViewGroup.LayoutParams params = listView.getLayoutParams();
            params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
            listView.setLayoutParams(params);
        }
    }
link|improve this answer
4  
You've just recreated a very expensive LinearLayout :) – Romain Guy Aug 16 '10 at 18:21
10  
Except a LinearLayout doesn't have all the inherent niceties of a ListView -- it doesn't have dividers, header/footer views, a list selector which matches the phone's UI theme colors, etc. Honestly, there's no reason why you can't scroll the inner container until it's reached the end and then have it stop intercepting touch events so that the outer container scrolls. Every desktop browser does this when you're using your scroll wheel. Android itself can handle nested scrolling if you're navigating via the trackball, so why not via touch? – Neil Traft Aug 26 '10 at 23:41
For solution by DoughW there is a bug, however i fixed it, see my post. – Nex Dec 8 '10 at 8:33
If I have list element with eg. TextView and in some cases it will contain two lines of text (or more) instead of one then height of whole ListView isn't measured correctly. Have solution for that? – croogie Oct 10 '11 at 18:35
4  
listItem.measure(0,0) will throw a NPE if listItem is a ViewGroup instance. I added the following before listItem.measure: if (listItem instanceof ViewGroup) listItem.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); – Good Guy Greg Feb 21 at 5:37
show 3 more comments
feedback

You should not put a ListView in a ScrollView because a ListView already is a ScrollView. So that would be like putting a ScrollView in a ScrollView.

What are you trying to accomplish?

link|improve this answer
1  
I'm trying to accomplish having a ListView inside a ScrollView. I do not want my ListView to be scrollable, but there is no simple property to set myListView.scrollEnabled = false; – DougW Aug 16 '10 at 18:05
As Romain Guy said, this is very much not the purpose of a ListView. A ListView is a view that is optimized for displaying a long list of items, with lots of complicated logic to do lazy loading of views, reuse views, etc. None of this makes sense if you are telling the ListView not to scroll. If you just want a bunch of items in a vertical column, use a LinearLayout. – Mayra Aug 16 '10 at 18:28
2  
The problem is that there are a number of solutions that a ListView provides, including the one you mention. Much of the functionality that Adapters simplify though is about data management and control, not UI optimization. IMO there should have been a simple ListView, and a more complex one that does all the list item reuse and stuff. – DougW Aug 16 '10 at 20:43
Absolutely agreed. Note that it's easy to use an existing Adapter with a LinearLayout, but I want all the nice things the ListView provides, like dividers, and that I don't feel like implementing manually. – Artem Russakovskii Jun 16 '11 at 23:01
feedback

For Romain Guy

This is not an attempt to hijack this thread. The message was simply too big for the comment box.

I have similar needs and I feel like this answer has not been evaluated to its real value. Whether this is expensive to do or not, the final decision is ours. You alone or even an entire team cannot possibly have thought about all the possible use cases of a ListView.

Here is my use case:

I am using a custom adapter to attach some custom data to a custom ListView. The data is a mix of database content and a thumbnail from one of 3 possible places (Fallback between Assets --> SD-Card --> Web location). The entire thing is stored in an ArrayList of objects. The generated ListView is sometimes displayed alone, and some other times it is displayed below a WebView that shows a rich content (HTML formatting, text wrapping around images, occasional hyperlinks). The contents (hence the heights) of the ListView and the WebView depend on whatever the user has put using the back-end CMS. So most of the time, the WebView will take from 25% to 70% of the display area and the ListView will continue beyond the boundaries of the screen. How can you make the entire screen content scroll without having the ListView scrolling within a tiny confined area which is by the way user unfriendly. The same thing happens also when you need a short description displayed above the list view. In such case, the list will scroll while the description is permanently visible.

I have a suggestion since you seem to be in charge of the ListView. The ListView should be able to give up its ability to scroll. Then in that case, it will use the position of the parent scroll to determine how to call getView(...).

link|improve this answer
feedback

hey I had a similar issue. I wanted to display a list view that didn't scroll and I found that manipulating the parameters worked but was inefficient and would behave differently on different devices.. as a result, this is a piece of my schedule code which actually does this very efficiently.

YOUR_DATABASE = new YOUR_DATABASE_CLASS(this);

 YOUR_CURSOR = YOUR_DATABASE.DATABASE_CURSOR();
int CURSOR_COUNT = YOUR_CURSOR.getCount();
if (CURSOR_COUNT > 0)
{    
LinearLayout YOUR_LINEAR_LAYOUT = (LinearLayout) findViewById(R.id.THE_ID);
startManagingCursor(YOUR_CURSOR);

YOUR_ADAPTER(**or SimpleCursorAdapter **) YOUR_ADAPTER = new YOUR_ADAPTER(this,
    R.layout.ITEM_LAYOUT, YOUR_CURSOR, YOUR_VALUES, THEIR_ID_IN_ITEM,
    this.getApplication());

int i;
for (i = 0; i < CURSOR_COUNT; i++){
  View listItem = YOUR_ADAPTER.getView(i,null,YOUR_LINEAR_LAYOUT);
  YOUR_LINEAR_LAYOUT.addView(listItem);
   }
}
link|improve this answer
feedback

protected by minitech May 17 at 23:48

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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