This repository was archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathnotification_pokefly_started_expanded.xml
More file actions
74 lines (64 loc) · 2.86 KB
/
notification_pokefly_started_expanded.xml
File metadata and controls
74 lines (64 loc) · 2.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:paddingLeft="@dimen/notification_horizontal_padding"
android:paddingTop="@dimen/notification_vertical_padding"
android:paddingRight="@dimen/notification_horizontal_padding"
android:paddingBottom="@dimen/notification_vertical_padding">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_gravity="center_vertical"
android:src="@mipmap/ic_launcher" />
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
style="@style/NotificationTitle"
android:id="@+id/notification_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
tools:text="@string/notification_title" />
<TextView
style="@style/NotificationMessage"
android:id="@+id/notification_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/notification_title_tap_to_open" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:gravity="end">
<Button
style="@style/Base.Widget.AppCompat.Button.Borderless"
android:id="@+id/recalibrate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="4dp"
android:text="@string/recalibrate_goiv_notification"
android:textColor="@color/colorPrimary"
android:drawableEnd="@drawable/ic_recalibrate_24px"
android:drawablePadding="4dp" />
<Button
style="@style/Base.Widget.AppCompat.Button.Borderless"
android:id="@+id/pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="-12dp"
android:text="@string/pause_goiv_notification"
android:textColor="@color/colorPrimary"
android:drawableEnd="@drawable/ic_pause_circle_outline_24px"
android:drawablePadding="4dp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>