0

我有一个列表,我正在向它添加一个页脚视图。但是页脚视图的高度始终是固定的。我想要大约一半大小的东西,但页脚视图的大小根本没有改变。我在它的 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>
4

2 回答 2

2

最后以下工作........ :P :P

            <?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" >

                <TextView
                    android:id="@+id/textView1"
                    android:layout_width="fill_parent"
                    android:layout_height="@dimen/bubble_bottom_indent" />

            </LinearLayout>
于 2013-08-23T05:40:32.103 回答
0

在运行时在列表中添加 FooterView 并相应地更改它的 LayoutParams

    Button addButton = new Button(this);
    addButton.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
    lv.addFooterView(addButton, null, true);

或者

    View view = inflater.inflate(R.layout.category, container, false);
    View footerView = inflater.inflate(R.layout.footer_category, null);
     LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, getResources.getDimension(R.dimen.height));
     footerView.setLayoutParams(lp)
    listview.addFooterView(footerView);
于 2013-08-23T04:20:09.170 回答