0

textView、listView、そしてボタンのあるページがあります。textView は listView とともに表示されますが、ボタンは表示されません。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/beerTitleTaste"
        android:gravity="center"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:textSize="20sp"
        android:textStyle = "bold"
        android:padding="5dip"
        >
    </TextView>

    <ListView
        android:id="@+id/tastelist"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:dividerHeight="0.1dp"
        >
    </ListView>

    <Button
        android:id="@+id/addTasteTageButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Add Taste Tag" />



</LinearLayout>

また、listViewの上にボタンを移動しようとしましたが、表示されましたが、listViewは表示されませんでした。

私はそれを TextView として、次にボタンが下部にある listView として使用したいと考えています。何か案は?

4

2 に答える 2

1

あなたはこのようにすることができます

<Button
android:id="@+id/addTasteTageButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1" in
android:text="Add Taste Tag" />
于 2013-06-27T02:50:06.573 に答える
1

設定してみてください:

android:layout_height="wrap_content"

のためにListView

于 2013-06-27T02:34:30.770 に答える