android相对布局实现梅花效果

梅花可以理解为东南西北中  下边用button实现

用相对布局可以以中间那个为基本来确定其他的位置


    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
     >
            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:width="100px"
        android:height="100px"
        android:id="@+id/dong"
        />
            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:width="100px"
        android:height="100px"
        android:layout_below="@id/dong"
        android:layout_toRightOf="@id/dong"
        android:id="@+id/zhong"
        />
            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:width="100px"
        android:height="100px"
        android:layout_toRightOf="@id/zhong"
        android:layout_alignParentTop="true"
        />
            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:width="100px"
        android:height="100px"
        android:layout_toLeftOf="@id/zhong"
        android:layout_below="@id/zhong"
        />
            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:width="100px"
        android:height="100px"
        android:layout_toRightOf="@id/zhong"
        android:layout_below="@id/zhong"
        />
    
    



你可能感兴趣的:(android)