相对布局
绝对是存在的,但是我们确是无法感知的,或者无法达到和谐的境界,我们只能感知相对的存在,只有在分组内彼此照应才能实现和谐,这和国家、家庭的治理理念似乎相同。
看到人民日报频道设置的UI,感觉不错,希望能在学习之后做得出来。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<TextView
android:id="@+id/textView1"
android:text="频道设置"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:textSize="26sp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textView2"
android:text="长按拖动调整频道顺序"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginTop="12dp"
android:textSize="18sp"
android:textColor="#192"
android:layout_below="@id/textView1"/>
<TextView
android:text="Wait, I’m here"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" />
<TextView
android:text="Actually, I’m here"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true" />
</RelativeLayout>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<TextView
android:id="@+id/textView1"
android:text="频道设置"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:textSize="26sp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textView2"
android:text="长按拖动调整频道顺序"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginTop="12dp"
android:textSize="18sp"
android:textColor="#192"
android:layout_below="@id/textView1"/>
<TextView
android:text="Actually, I’m here"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true" />
<ImageView
android:id="@+id/photo_image_view1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:src="@drawable/android"
android:layout_below="@id/textView2"
android:layout_marginTop="40dp" />
<ImageView
android:id="@+id/photo_image_view2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:src="@drawable/android"
android:layout_toRightOf="@id/photo_image_view1"
android:layout_below="@id/textView2"
android:layout_marginTop="40dp"/>
<ImageView
android:id="@+id/photo_image_view3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:src="@drawable/android"
android:layout_below="@id/photo_image_view1"
android:layout_marginTop="40dp" />
<ImageView
android:id="@+id/photo_image_view4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:src="@drawable/android"
android:layout_toRightOf="@id/photo_image_view3"
android:layout_below="@id/photo_image_view2"
android:layout_marginTop="40dp"/>
<Button
android:id="@+id/liaoning"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="辽宁"
android:textSize="18sp"
android:textColor="#192"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" />
<Button
android:id="@+id/dalian"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="大连"
android:textAllCaps="false"
android:textColor="#192"
android:textSize="20sp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" />
</RelativeLayout>