在我的ListView中我有一個footerview,但它的TextView沒有擴展到父寬度。這裏是我的頁腳的xml:ListView頁腳不擴展到父寬度
<?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);
貌似所有被將以優良。我認爲錯誤很簡單。重新檢查你的佈局文件。 – 2013-11-04 07:27:52