我有一个包含带有页脚的列表视图的布局,我以编程方式添加了这个页脚,现在我想使用横向模式,我做了一切,但我有一个问题。
portiet 模式下的页脚是填充父宽度。但是当我更改为横向时,它变成了换行内容。
请帮忙。
这就是我以编程方式添加页脚的方式
View footer = LayoutInflater.from(this).inflate(R.layout.footer_button,
null);
footer.setPadding(0, 0, 0, 0);
横向布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical" >
<TextView
android:id="@+id/tv_customer_profile_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:gravity="center"
android:text="@string/tv_name"
android:textColor="#025f7c"
android:textSize="30sp"
android:typeface="serif" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingTop="15dip" >
<ImageView
android:id="@+id/iv_customer_profile_image"
android:layout_width="0dip"
android:layout_height="150dip"
android:layout_weight="1"
android:contentDescription="@string/iv_undefinedImage"
android:paddingLeft="5dip"
android:src="@drawable/totti" />
<ListView
android:id="@+id/lv_customer_profile_details"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:cacheColorHint="#00000000"
android:paddingLeft="10dip"
android:paddingRight="10dip" >
</ListView>
</LinearLayout>
</LinearLayout>