我如何像这张图片一样水平对齐三个imageview http://imgur.com/isvfTqZ 如何制作这个typelayout。是linearlayout还是Relativelayout帮帮我???如何在水平方向上垂直组合 imageview 和 textview ...?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="92dp"
android:background="#F9F939"
android:src="@drawable/ic_launcher"
android:layout_toLeftOf ="@+id/imageView6"
android:layout_centerInParent="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_centerInParent="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_centerInParent="true"
android:layout_toRightOf="@+id/imageView6"
android:padding="15dp" />
</RelativeLayout>