我想ImageViews
在屏幕底部以相同的重量显示三个。但是图像的大小不是固定的。我想显示 2 张图片,其中一张应该被隐藏,我该怎么办?
如何调整ImageViews
应该并排的三个之间的空间,并且第三个不应该与屏幕上可见ImageView
的两个重叠?ImageViews
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/main_imge_1"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#F9F939"
android:src="@drawable/ic_launcher"
android:layout_toLeftOf ="@+id/imageView6"
android:layout_alignParentBottom="true"
android:padding="15dp" />
<ImageView
android:id="@+id/imageView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#54F71D"
android:src="@drawable/ic_launcher"
android:layout_alignParentBottom="true"
android:padding="15dp"
android:layout_margin="10dp" />
<ImageView
android:id="@+id/imageView7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#1DF7AB"
android:src="@drawable/ic_launcher"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@+id/imageView6"
android:padding="15dp" />
</RelativeLayout>