<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/lyt_stats"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/plain_bg"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/lyt_statsheader"
android:layout_width="match_parent"
android:layout_height="42dip"
android:background="@drawable/headerbar_stats"
android:orientation="vertical" >
<include
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/statsheader" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/txtworktcompltd"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="10dip"
android:text="@string/workt_completed"
android:textColor="@color/Black"
android:textSize="22dip"
android:textStyle="bold" />
<ListView
android:id="@+id/listViewwoktcompleted"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="5dip"
android:layout_weight="1"
android:background="@color/White"
android:cacheColorHint="#00000000"
android:listSelector="@android:color/transparent" />
<TextView
android:id="@+id/txtTotalworktTime"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
android:layout_marginTop="5dip"
android:text="@string/workttotal_time"
android:textColor="@color/Black"
android:textSize="22dip" />
<TextView
android:id="@+id/txtexcompltd"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
android:layout_marginTop="5dip"
android:text="@string/ex_completed"
android:textColor="@color/Black"
android:textSize="22dip"
android:textStyle="bold" />
<ListView
android:id="@+id/listViewexcompleted"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="5dip"
android:layout_weight="1"
android:background="@color/White"
android:cacheColorHint="#00000000"
android:minHeight="0dip" />
<TextView
android:id="@+id/txtTotalEx"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
android:text="@string/extotal"
android:textColor="@color/Black"
android:textSize="22dip" />
<TextView
android:id="@+id/txtweightloss"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
android:text="@string/txtweightlossed"
android:textColor="@color/Black"
android:textSize="22dip"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
I want to display two listview in an activity,the contents in listview loading dynamically. I want to add more components below the second listview.When I am using scrollview can see only one row in each listview.Without using scroolview can see all the contents in listview..But cant see the components below the second listview..can anyone please help me to add multiple expandable listview in an activity??