1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <RelativeLayout
3+ android : layout_width =" match_parent"
4+ android : layout_height =" wrap_content"
5+ android : padding =" @dimen/default_padding"
6+ xmlns : android =" http://schemas.android.com/apk/res/android" >
7+
8+ <!-- logo -->
9+ <ImageView
10+ android : id =" @+id/logo"
11+ android : layout_width =" @dimen/about_icon_size"
12+ android : layout_height =" @dimen/about_icon_size"
13+ android : adjustViewBounds =" false"
14+ android : contentDescription =" @string/app_name"
15+ android : layout_centerHorizontal =" true"
16+ android : padding =" @dimen/default_padding"
17+ android : scaleType =" fitXY"
18+ android : gravity =" center"
19+ android : src =" @mipmap/ic_launcher" />
20+
21+ <TextView
22+ android : id =" @+id/title"
23+ android : layout_width =" match_parent"
24+ android : layout_height =" wrap_content"
25+ android : padding =" @dimen/large_padding"
26+ android : text =" @string/app_name"
27+ android : textColor =" @color/title_color"
28+ android : textSize =" @dimen/large_title_textSize"
29+ android : layout_below =" @+id/logo"
30+ android : gravity =" center" />
31+
32+ <!-- description -->
33+ <TextView
34+ android : id =" @+id/description"
35+ android : layout_width =" match_parent"
36+ android : layout_height =" wrap_content"
37+ android : padding =" @dimen/large_padding"
38+ android : text =" @string/app_description"
39+ android : textColor =" @color/title_color"
40+ android : textSize =" @dimen/title_textSize"
41+ android : layout_below =" @+id/title"
42+ android : gravity =" center" />
43+
44+ <!-- email -->
45+ <TextView
46+ android : id =" @+id/email"
47+ android : layout_width =" match_parent"
48+ android : layout_height =" wrap_content"
49+ android : paddingBottom =" @dimen/large_padding"
50+ android : text =" @string/my_email"
51+ android : textColor =" @color/title_color"
52+ android : textSize =" @dimen/title_textSize"
53+ android : layout_below =" @+id/description"
54+ android : gravity =" center" />
55+
56+ <!-- github link-->
57+ <TextView
58+ android : id =" @+id/github"
59+ android : layout_width =" match_parent"
60+ android : layout_height =" wrap_content"
61+ android : paddingBottom =" @dimen/large_padding"
62+ android : text =" @string/my_github"
63+ android : textColor =" @color/title_color"
64+ android : textSize =" @dimen/title_textSize"
65+ android : layout_below =" @+id/email"
66+ android : gravity =" center" >
67+
68+ </TextView >
69+
70+ <!-- api link -->
71+ <TextView
72+ android : id =" @+id/api"
73+ android : layout_width =" match_parent"
74+ android : layout_height =" wrap_content"
75+ android : paddingBottom =" @dimen/large_padding"
76+ android : text =" @string/api_link"
77+ android : textColor =" @color/title_color"
78+ android : textSize =" @dimen/title_textSize"
79+ android : layout_below =" @+id/github"
80+ android : gravity =" center" />
81+
82+ </RelativeLayout >
0 commit comments