1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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:orientation="vertical"
18        android:layout_width="fill_parent"
19        android:layout_height="fill_parent">
20    <Button
21        android:id="@+id/publish"
22        android:text="@string/publish"
23        android:layout_width="fill_parent"
24        android:layout_height="wrap_content"
25        android:onClick="onPublishPressed"/>
26    <Button
27        android:id="@+id/add_shortcut"
28        android:text="@string/add_shortcut"
29        android:layout_width="fill_parent"
30        android:layout_height="wrap_content"
31        android:onClick="onAddPressed"/>
32    <Button
33        android:id="@+id/update_shortcuts"
34        android:text="@string/update_shortcuts"
35        android:layout_width="fill_parent"
36        android:layout_height="wrap_content"
37        android:onClick="onUpdatePressed"/>
38    <Button
39        android:id="@+id/delete_all"
40        android:text="@string/delete_all"
41        android:layout_width="fill_parent"
42        android:layout_height="wrap_content"
43        android:onClick="onDeleteAllPressed"/>
44    <Button
45        android:id="@+id/show_notification"
46        android:text="@string/show_notification"
47        android:layout_width="fill_parent"
48        android:layout_height="wrap_content"
49        android:onClick="onShowNotificationPressed"/>
50    <Button
51        android:id="@+id/request_pin"
52        android:text="@string/request_pin"
53        android:layout_width="fill_parent"
54        android:layout_height="wrap_content"
55        android:onClick="onRequestPinPressed"/>
56    <ListView
57        android:id="@android:id/list"
58        android:layout_width="match_parent"
59        android:layout_height="0dip"
60        android:layout_weight="1"
61        android:enabled="true"
62    />
63</LinearLayout>
64
65
66