本帖最后由 j68205150 于 2012-12-24 16:11:42 编辑

解决方案 »

  1.   

    FrameLayout里面包含LinearLayout
    可以实现
      

  2.   

    外层FrameLayout,内层LinearLayout
      

  3.   

           如楼上所说的可以考虑FrameLayout布局的方式实现
        下面是实现
        代码演示:
           <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity" >    <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            tools:context=".MainActivity" >        <ImageView
                android:id="@+id/blue"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="40dip"
                android:src="@drawable/blue" />        <ImageView
                android:id="@+id/white"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/blue"
                android:src="@drawable/white" />        <ImageView
                android:id="@+id/gray"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignTop="@+id/blue"
                android:layout_toRightOf="@+id/blue"
                android:src="@drawable/gray" />
        </RelativeLayout>    <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="80dip"
            android:layout_marginTop="10dip"
            android:src="@drawable/pian" /></FrameLayout>   实际效果:
        
      

  4.   

    可以试方式 kiritor的方法