11<?xml version =" 1.0" encoding =" utf-8" ?>
22<LinearLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3- android : layout_width =" match_parent"
4- android : layout_height =" match_parent"
5- android : gravity =" center"
3+ android : layout_width =" wrap_content"
4+ android : layout_height =" wrap_content"
65 android : orientation =" vertical"
7- android : padding =" @dimen/content_area_padding" >
6+ android : paddingEnd =" 24dp"
7+ android : paddingStart =" 24dp"
8+ android : paddingTop =" 24dp" >
9+
10+ <LinearLayout
11+ android : layout_width =" match_parent"
12+ android : layout_height =" wrap_content"
13+ android : orientation =" horizontal" >
14+
15+ <ImageView
16+ android : layout_width =" 0dp"
17+ android : layout_height =" match_parent"
18+ android : layout_gravity =" fill_horizontal|center_vertical"
19+ android : layout_weight =" .1"
20+ android : paddingEnd =" @dimen/content_area_padding"
21+ android : scaleType =" fitCenter"
22+ android : src =" @drawable/ic_done_black_24dp"
23+ android : tint =" @color/colorAccent"
24+ />
25+
26+ <TextView
27+ android : layout_width =" 0dp"
28+ android : layout_height =" match_parent"
29+ android : layout_gravity =" fill_horizontal"
30+ android : layout_weight =" 1"
31+ android : gravity =" center_vertical"
32+ android : paddingEnd =" @dimen/content_area_padding"
33+ android : paddingStart =" @dimen/content_area_padding"
34+ android : text =" @string/registration_complete"
35+ android : textAppearance =" @android:style/TextAppearance.Material.DialogWindowTitle" />
36+
37+ </LinearLayout >
838
9- <ImageView
10- android : layout_width =" 100dp"
11- android : layout_height =" 100dp"
12- android : paddingBottom =" @dimen/content_area_padding"
13- android : paddingTop =" @dimen/content_area_padding"
14- android : backgroundTint =" @color/colorAccent"
15- android : background =" @drawable/ic_done_black_24dp" />
1639
1740 <TextView
18- android : layout_width =" wrap_content"
41+ android : id =" @+id/drc_text_view"
42+ android : layout_width =" match_parent"
43+ android : layout_height =" wrap_content"
44+ android : paddingBottom =" 24dp"
45+ android : paddingTop =" 8dp"
46+ android : text =" @string/registration_complete_dialog_text" />
47+
48+ <LinearLayout
49+ android : layout_width =" match_parent"
1950 android : layout_height =" wrap_content"
20- android : paddingBottom =" @dimen/content_area_padding"
21- android : paddingTop =" @dimen/content_area_padding"
22- android : text =" Registration Complete"
23- android : textAppearance =" @android:style/TextAppearance.Material.Display1" />
51+ android : gravity =" end"
52+ android : orientation =" horizontal"
53+ android : paddingBottom =" 8dp" >
54+
55+ <Button
56+ android : id =" @+id/drc_ok_button"
57+ style =" @android:style/Widget.Material.Button.Borderless.Colored"
58+ android : layout_width =" wrap_content"
59+ android : layout_height =" wrap_content"
60+ android : text =" @string/action_ok"
61+ />
62+ </LinearLayout >
2463
2564</LinearLayout >
0 commit comments