我想在首选项活动中并排有两个首选项。一个例子是这样的:
图像从壁纸中得到:星云
我试过了:
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>
但这表现为:这
我认为
这是因为您的android:layout_weight="1"
为 1。更改为 0.5。并将android:layout_width="wrap_content"
更改为android:layout_width="0dp"