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

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 に答える