布局练习
Posted superxuezhazha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了布局练习相关的知识,希望对你有一定的参考价值。
做一个如图所示的布局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <ImageView android:id="@+id/image_view" android:layout_width="56dp" android:layout_height="56dp" android:scaleType="centerCrop" android:src="@drawable/ocean" /> <TextView android:id="@+id/Pebble_Beach_text_view" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Pebble Beach" android:layout_toRightOf = "@id/image_view" android:textAppearance="?android:textAppearanceMedium" /> <TextView android:id="@+id/california_text_view" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/Pebble_Beach_text_view" android:layout_toRightOf="@id/image_view" android:text="California" android:textAppearance="?android:textAppearanceSmall" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/california_text_view" android:layout_toRightOf="@id/image_view" android:text="10 miles away" android:textAppearance="?android:textAppearanceSmall" /> </RelativeLayout>
以上是关于布局练习的主要内容,如果未能解决你的问题,请参考以下文章