1、layout_alignParentTop 父视图上方
layout_alignParentBottom 父视图下方
layout_alignParentLeft 父视图左方
layout_alignParentRight 父视图右方
layout_centerVertical 父视图中间
2、layout_toRightOf 在什么右边
layout_below 在什么下面
3、android:src=”@drawable/Helloworld”(H大写命名错误,只能a-z,0-9)
所以应该改成android:src=”@drawable/helloworld”
4、android:id=”@+id/Helloworld _text_view”
5、android:fontFamily=”casual” 设置字体
6、android:textColor=”@android:color/white” Android标准颜色(或采用十六进制 Material Design 配色 )
7、android:layout_below=”@id/happy_text_view” 定义该View在 happy_text_view的下面
8、自制生日贺卡
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| <?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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">
<ImageView android:src="@drawable/birthday" android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="centerCrop"/>
<TextView android:id="@+id/happy_text_view" android:text="Happy Birthday Chen" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="32sp" android:layout_alignParentTop="true" android:layout_alignParentLeft="true" android:layout_margin="20dp" android:fontFamily="casual" android:textColor="@android:color/white"/>
<TextView android:text="- 2017.4.23" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="26sp" android:layout_below="@id/happy_text_view" android:layout_alignParentRight="true" android:layout_margin="5dp" android:fontFamily="casual" android:textColor="@android:color/white"/>
<TextView android:text="From Curtis" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="26sp" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_margin="5dp" android:fontFamily="casual" android:textColor="@android:color/white"/>
</RelativeLayout>
|