-
Notifications
You must be signed in to change notification settings - Fork 0
/
auto_read.xml
49 lines (48 loc) · 1.75 KB
/
auto_read.xml
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#222"
android:alpha="0.98"
android:padding="16dp"
android:layout_width="match_parent" android:layout_height="match_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="Time"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/autoread_factor"
android:layout_width="0dp"
android:layout_weight="6"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:text="Confirm"
android:onClick="confirm"
android:id="@+id/autoread_confirm"
android:layout_width="0dp"
android:layout_weight="3"
android:layout_height="wrap_content" />
<Button
android:layout_width="0dp"
android:layout_weight="3"
android:onClick="confirm"
android:text="Cancel"
android:id="@+id/cancel_autoread"
android:layout_height="wrap_content" />
<Button
android:layout_width="0dp"
android:layout_weight="3"
android:visibility="invisible"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>