ImageViews
画面の下部に同じ重みで3つ表示したい。ただし、画像のサイズは固定されていません。2 つの画像を表示したいのですが、1 つを非表示にする必要があります。どうすればよいですか? 隣り合う
3 つの間のスペースを調整する方法と、3 つ目が画面に表示されている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>