The problem is that when my ListView grows it pushes my bottom TextView out of the screen.
How can I overcome this?
Thanks!
here is current XML:
Using xml Syntax Highlighting
- <?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="fill_parent"
- android:background="#000000">
- <TextView
- android:id="@+id/loadingStatus"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:text="Title..."
- android:textSize="20sp"
- />
- <LinearLayout
- android:id="@+id/LinearLayout01"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <ListView
- android:id="@+id/android:list"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- <TextView
- android:id="@+id/streamStatusBar"
- android:layout_width="fill_parent"
- android:text="Processing Some Information"
- android:textSize="12sp"
- android:textColor="#FFFFFF"
- android:layout_gravity="left|center_horizontal"
- android:gravity="center_horizontal"
- android:layout_height="18px"
- android:layout_marginBottom="4px"/>
- </LinearLayout>
Parsed in 0.004 seconds, using GeSHi 1.0.8.4


.