Update to platforms;android-28.
[android_tools.git] / sdk / platforms / android-28 / data / res / layout / app_error_dialog.xml
blobc3b149a1e2959596ba3989b5b9a7e1483c9960b9
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 /*
4 **
5 ** Copyright 2015, The Android Open Source Project
6 **
7 ** Licensed under the Apache License, Version 2.0 (the "License");
8 ** you may not use this file except in compliance with the License.
9 ** You may obtain a copy of the License at
11 **     http://www.apache.org/licenses/LICENSE-2.0
13 ** Unless required by applicable law or agreed to in writing, software
14 ** distributed under the License is distributed on an "AS IS" BASIS,
15 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ** See the License for the specific language governing permissions and
17 ** limitations under the License.
19 -->
20 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21     android:layout_width="match_parent"
22     android:layout_height="wrap_content"
23     android:orientation="vertical"
24     android:paddingTop="@dimen/aerr_padding_list_top"
25     android:paddingBottom="@dimen/aerr_padding_list_bottom">
27     <Button
28         android:id="@+id/aerr_restart"
29         android:layout_width="match_parent"
30         android:layout_height="wrap_content"
31         android:text="@string/aerr_restart"
32         android:drawableStart="@drawable/ic_refresh"
33         style="@style/aerr_list_item" />
35     <Button
36         android:id="@+id/aerr_app_info"
37         android:layout_width="match_parent"
38         android:layout_height="wrap_content"
39         android:text="@string/app_info"
40         android:drawableStart="@drawable/ic_info_outline_24"
41         style="@style/aerr_list_item" />
43     <Button
44         android:id="@+id/aerr_close"
45         android:layout_width="match_parent"
46         android:layout_height="wrap_content"
47         android:text="@string/aerr_close_app"
48         android:drawableStart="@drawable/ic_close"
49         style="@style/aerr_list_item" />
51     <Button
52         android:id="@+id/aerr_report"
53         android:layout_width="match_parent"
54         android:layout_height="wrap_content"
55         android:text="@string/aerr_report"
56         android:drawableStart="@drawable/ic_feedback"
57         style="@style/aerr_list_item" />
59     <Button
60         android:id="@+id/aerr_mute"
61         android:layout_width="match_parent"
62         android:layout_height="wrap_content"
63         android:text="@string/aerr_mute"
64         android:drawableStart="@drawable/ic_eject_24dp"
65         style="@style/aerr_list_item" />
67 </LinearLayout>