• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17    android:layout_width="match_parent"
18    android:layout_height="match_parent"
19    android:orientation="vertical" >
20    <Button
21        android:id="@+id/cancel_all_button"
22        android:layout_width="wrap_content"
23        android:layout_height="wrap_content"
24        android:text="Cancel All"
25        android:textSize="35sp"/>
26    <Button
27        android:id="@+id/importance_high_button"
28        android:layout_width="wrap_content"
29        android:layout_height="wrap_content"
30        android:text="Importance: HIGH (Shows heads-up)"
31        android:textSize="35sp"/>
32    <Button
33        android:id="@+id/importance_high_button_2"
34        android:layout_width="wrap_content"
35        android:layout_height="wrap_content"
36        android:text="Importance: HIGH (Shows heads-up) 2"
37        android:textSize="35sp"/>
38    <Button
39        android:id="@+id/importance_default_button"
40        android:layout_width="wrap_content"
41        android:layout_height="wrap_content"
42        android:text="Importance: DEFAULT"
43        android:textSize="35sp"/>
44    <Button
45        android:id="@+id/importance_low_button"
46        android:layout_width="wrap_content"
47        android:layout_height="wrap_content"
48        android:text="Importance: LOW"
49        android:textSize="35sp"/>
50    <Button
51        android:id="@+id/importance_min_button"
52        android:layout_width="wrap_content"
53        android:layout_height="wrap_content"
54        android:text="Importance: MIN"
55        android:textSize="35sp"/>
56    <Button
57        android:id="@+id/ongoing_button"
58        android:layout_width="wrap_content"
59        android:layout_height="wrap_content"
60        android:text="Ongoing"
61        android:textSize="35sp"/>
62    <Button
63        android:id="@+id/category_message_button"
64        android:layout_width="wrap_content"
65        android:layout_height="wrap_content"
66        android:text="Category: CATEGORY_MESSAGE"
67        android:textSize="35sp"/>
68</LinearLayout>
69