1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <LinearLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ android : id =" @+id/popup_window"
4
+ android : layout_width =" match_parent"
5
+ android : layout_height =" wrap_content"
6
+ android : layout_gravity =" bottom|center"
7
+ android : background =" @android:color/white"
8
+ android : orientation =" vertical"
9
+ android : padding =" 10dp" >
10
+
11
+
12
+ <TextView
13
+ android : id =" @+id/txt_save_apk"
14
+ android : layout_width =" match_parent"
15
+ android : layout_height =" wrap_content"
16
+ android : background =" @drawable/touch_selector_white"
17
+ android : clickable =" true"
18
+ android : drawableLeft =" @drawable/save_apk"
19
+ android : drawablePadding =" 24dp"
20
+ android : gravity =" center_vertical"
21
+ android : padding =" 10dp"
22
+ android : text =" @string/bottom_sheet_save_apk"
23
+ android : textAppearance =" ?android:attr/textAppearanceSmall"
24
+ android : textColor =" @color/black_primary_text"
25
+ android : textStyle =" bold"
26
+ />
27
+
28
+ <TextView
29
+ android : id =" @+id/txt_save_project"
30
+ android : layout_width =" match_parent"
31
+ android : layout_height =" wrap_content"
32
+ android : background =" @drawable/touch_selector_white"
33
+ android : clickable =" true"
34
+ android : drawableLeft =" @drawable/save_project"
35
+ android : drawablePadding =" 24dp"
36
+ android : gravity =" center_vertical"
37
+ android : padding =" 10dp"
38
+ android : text =" @string/bottom_sheet_save_project"
39
+ android : textAppearance =" ?android:attr/textAppearanceSmall"
40
+ android : textColor =" @color/black_primary_text"
41
+ android : textStyle =" bold" />
42
+
43
+ <TextView
44
+ android : id =" @+id/txt_share_apk"
45
+ android : layout_width =" match_parent"
46
+ android : layout_height =" wrap_content"
47
+ android : background =" @drawable/touch_selector_white"
48
+ android : clickable =" true"
49
+ android : drawableLeft =" @drawable/share_apk"
50
+ android : drawablePadding =" 24dp"
51
+ android : gravity =" center_vertical"
52
+ android : padding =" 10dp"
53
+ android : text =" @string/bottom_sheet_share_apk"
54
+ android : textAppearance =" ?android:attr/textAppearanceSmall"
55
+ android : textColor =" @color/black_primary_text"
56
+ android : textStyle =" bold" />
57
+
58
+ <TextView
59
+ android : id =" @+id/txt_share_project"
60
+ android : layout_width =" match_parent"
61
+ android : layout_height =" wrap_content"
62
+ android : background =" @drawable/touch_selector_white"
63
+ android : clickable =" true"
64
+ android : drawableLeft =" @drawable/ic_group_work_black_24dp"
65
+ android : drawablePadding =" 24dp"
66
+ android : gravity =" center_vertical"
67
+ android : padding =" 10dp"
68
+ android : text =" @string/bottom_sheet_share_project"
69
+ android : textAppearance =" ?android:attr/textAppearanceSmall"
70
+ android : textColor =" @color/black_primary_text"
71
+ android : textStyle =" bold" />
72
+
73
+ </LinearLayout >
0 commit comments