在我的 ListView 我有一个页脚视图,但它的 TextView 没有扩展到父级的宽度。这是我的页脚 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="horizontal"
android:padding="5dp" >
<TextView
android:id="@+id/tvShowMore"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:text="Show more"
android:textSize="18sp" />
</LinearLayout>
这是我的代码:
LayoutParams llParams = new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
viewFooterShowMore.setLayoutParams(llParams);
lvEvents.addFooterView(viewFooterShowMore);