is_customer_dialog.xml
2.17 KB
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
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="@dimen/space_25"
android:background="@drawable/abc_dialog_material_background_light">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/text_size_18"
android:textColor="@color/black"
android:id="@+id/dialog_title"
android:gravity="center"
android:text="@string/title_remind"
/>
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_marginTop="@dimen/space_20"
android:background="@color/grey" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="@dimen/space_40"
android:layout_weight="1"
android:textSize="@dimen/text_size_18"
android:gravity="center"
android:textColor="@color/app_blue"
android:text="@string/button_submit_calcle"
android:id="@+id/custom_cancel"
android:focusable="true"
android:background="@drawable/dialog_cs_selector"/>
<View
android:layout_width="1px"
android:layout_height="match_parent"
android:background="@color/grey" />
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:textSize="@dimen/text_size_18"
android:gravity="center"
android:textColor="@color/app_blue"
android:text="@string/button_submit_entry"
android:id="@+id/custom_confrim"
android:focusable="true"
android:background="@drawable/dialog_cs_selector"/>
</LinearLayout>
</LinearLayout>