Android利用reative_layout生成梅花界面
Posted llguanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android利用reative_layout生成梅花界面相关的知识,希望对你有一定的参考价值。
XML代码:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <!-- 定义该组件位于父容器中间 --> <TextView android:id="@+id/view01" android:layout_width="50dp" android:layout_height="50dp" android:background="@drawable/a" android:layout_centerInParent="true" /> <!-- 定义该组件位于父容器上方 --> <TextView android:id="@+id/view02" android:layout_width="50dp" android:layout_height="50dp" android:background="@drawable/a" android:layout_above="@id/view01" android:layout_alignLeft="@id/view01" /> <!-- 定义该组件位于view01组件的下方 --> <TextView android:id="@+id/view03" android:layout_width="50dp" android:layout_height="50dp" android:background="@drawable/a" android:layout_below="@id/view01" android:layout_alignLeft="@id/view01" /> <!-- 定义该组件位于view01组件的左边 --> <TextView android:id="@+id/view04" android:layout_width="50dp" android:layout_height="50dp" android:background="@drawable/a" android:layout_toLeftOf="@id/view01" android:layout_alignTop="@id/view01" /> <!-- 该组件位于view01组件的右边 --> <TextView android:id="@+id/view05" android:layout_width="50dp" android:layout_height="50dp" android:background="@drawable/a" android:layout_toRightOf="@id/view01" android:layout_alignTop="@id/view01" /> </RelativeLayout>
效果:
以上是关于Android利用reative_layout生成梅花界面的主要内容,如果未能解决你的问题,请参考以下文章
android studio 利用gradle和cmakelist生成c++静态库.a的方法总结