我有一个列表,我正在向它添加一个页脚视图。但是页脚视图的高度始终是固定的。我想要大约一半大小的东西,但页脚视图的大小根本没有改变。我在它的 xml 布局文件中尝试了许多组合。请帮忙。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#ff0000"
>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Footer...." />
</LinearLayout>