Hi,
I wanted to display, mutiple ListViews side by side(horizontal) and
which are each scrollable on their own that is scrolling of one
doesn't change the scroll position of the others and also to extend
it, instead of the regular checkbuttons from Android I would like to
use my images.

Here is the sample screenshot of what I wanted.
http://i52.tinypic.com/2zhgknt.png

Any help of how should I proceed would be really appreciated. Here is
my xml for the view.


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android" android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:splitMotionEvents="true">
    <ListView android:id="@+id/list1" android:layout_width="0dip"
android:layout_height="match_parent" android:layout_weight="1" />
    <ListView android:id="@+id/list2" android:layout_width="0dip"
android:layout_height="match_parent" android:layout_weight="1" />
    <ListView android:id="@+id/list3" android:layout_width="0dip"
android:layout_height="match_parent" android:layout_weight="1" />
</LinearLayout>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to