To achieve this, you need to do the following:
- Create a vertical ScrollView having a Single LinearLayout.
- Now create horizontal ListViews inside this Linearlayout, as shown in the example below:
, , ListView.
.
<ScrollView>
<LinearLayout..... //this a vertically oriented layout
>
<ListView/>
.
.//This listViews Are Horizontal
.
<ListView>
</Linearlayout>
</ScrollView>
: LinearLayout.
LinearLayout ll=(LinearLayout)findViewById(R.id.id_given_in_the_XML_file);
ListView lv=new ListView(Activityname.this);
.
.
.
Do All ListView Processing Here
.
.
.
lv.setAdapater(adapter);
ll.addView(lv);