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 : padding =" 10dp"
9+ android : orientation =" vertical" >
10+
11+
12+ <TextView
13+ android : background =" ?attr/selectableItemBackground"
14+ android : clickable =" true"
15+ android : id =" @+id/txt_save_apk"
16+ android : layout_width =" match_parent"
17+ android : layout_height =" wrap_content"
18+ android : drawableLeft =" @drawable/save_apk"
19+ android : drawablePadding =" 15dp"
20+ android : gravity =" center_vertical"
21+ android : padding =" 10dp"
22+ android : text =" @string/bottom_sheet_save_apk"
23+ android : textColor =" @color/black_primary_text"
24+ android : textAppearance =" ?android:attr/textAppearanceMedium"
25+ />
26+
27+ <TextView
28+ android : id =" @+id/txt_save_project"
29+ android : layout_width =" match_parent"
30+ android : layout_height =" wrap_content"
31+ android : drawableLeft =" @drawable/save_project"
32+ android : drawablePadding =" 15dp"
33+ android : gravity =" center_vertical"
34+ android : padding =" 10dp"
35+ android : text =" @string/bottom_sheet_save_project"
36+ android : textColor =" @color/black_primary_text"
37+ android : textAppearance =" ?android:attr/textAppearanceMedium"
38+ android : background =" ?attr/selectableItemBackground"
39+ android : clickable =" true" />
40+
41+ <TextView
42+ android : id =" @+id/txt_share_apk"
43+ android : layout_width =" match_parent"
44+ android : layout_height =" wrap_content"
45+ android : drawableLeft =" @drawable/share_apk"
46+ android : drawablePadding =" 15dp"
47+ android : gravity =" center_vertical"
48+ android : padding =" 10dp"
49+ android : text =" @string/bottom_sheet_share_apk"
50+ android : textAppearance =" ?android:attr/textAppearanceMedium"
51+ android : textColor =" @color/black_primary_text"
52+ android : background =" ?attr/selectableItemBackground"
53+ android : clickable =" true" />
54+
55+ <TextView
56+ android : id =" @+id/txt_share_project"
57+ android : layout_width =" match_parent"
58+ android : layout_height =" wrap_content"
59+ android : drawableLeft =" @drawable/ic_group_work_black_24dp"
60+ android : drawablePadding =" 15dp"
61+ android : gravity =" center_vertical"
62+ android : padding =" 10dp"
63+ android : text =" @string/bottom_sheet_share_project"
64+ android : textAppearance =" ?android:attr/textAppearanceMedium"
65+ android : textColor =" @color/black_primary_text"
66+ android : background =" ?attr/selectableItemBackground"
67+ android : clickable =" true" />
68+
69+ </LinearLayout >
0 commit comments