在我的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);
答案 0 :(得分:2)
您可以尝试使用
android:layout_width="match_parent"