并排pref android

时间:2014-01-16 16:58:05

标签: android image preferences

我希望在偏好活动中并排两个偏好。一个例子是:

image 来自壁纸:Nebulander

我试过了:

imagepref2.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:paddingBottom="15dip"
    android:paddingTop="15dip" >

    <ImageView
        android:id="@+id/thumb_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1"
        android:src="@drawable/img_1" />

    <ImageView
        android:id="@+id/thumb_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1"
        android:src="@drawable/img_2" >
    </ImageView>
</LinearLayout>

但这显示为: this

1 个答案:

答案 0 :(得分:0)

我认为这是因为你的android:layout_weight="1"是1。 改为0.5。 并将android:layout_width="wrap_content"更改为android:layout_width="0dp"