I'm having trouble setting up an Android Layout.
What I would like is a scrollable ListView followed by a small bar of text (TextView) that doesn't scroll and always stays at the bottom of the screen.
it would look like this:

I've tried a bunch of different variations on this, but none shows the static text
Any thoughts as to where I'm going wrong?
TKS!
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">
- <LinearLayout android:orientation="vertical"
- android:layout_width="fill_parent" android:layout_height="wrap_content">
- <ListView android:id="@+id/list2" android:layout_width="fill_parent"
- android:layout_height="fill_parent" />
- </LinearLayout>
- <TextView android:layout_width="fill_parent"
- android:layout_height="50dip" android:text="Bar of text that always stays at the bottom of the screen" />
- </LinearLayout>
Parsed in 0.001 seconds, using GeSHi 1.0.8.4