我有一个带有 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。有任何想法吗?