Android レイアウトの設定に問題があります。
私が望むのは、スクロール可能な ListView の後に、スクロールせず、常に画面の下部にとどまる小さなテキスト バー (TextView) が続くことです。
次のようになります。
ListViewItem1
ListViewItem2
ListViewItem3
…</p>
ここにテキスト バー (ListView のスクロール状態に関係なく常に表示されます)
これについてさまざまなバリエーションを試しましたが、静的テキストを表示するものはありません
どこが間違っているかについて何か考えはありますか?
TKS!
<?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>