Add version 25.0.2 of dx.jar to sdk/build-tools.
[android_tools.git] / sdk / platforms / android-27 / data / res / layout / app_error_dialog.xml
blobd78ce59872ffd66e7755d2b22fef779512c3aca1
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">
28     <Button
29             android:id="@+id/aerr_restart"
30             android:layout_width="match_parent"
31             android:layout_height="wrap_content"
32             android:text="@string/aerr_restart"
33             android:drawableStart="@drawable/ic_refresh"
34             style="@style/aerr_list_item"
35     />
37     <Button
38             android:id="@+id/aerr_close"
39             android:layout_width="match_parent"
40             android:layout_height="wrap_content"
41             android:text="@string/aerr_close_app"
42             android:drawableStart="@drawable/ic_close"
43             style="@style/aerr_list_item"
44     />
46     <Button
47             android:id="@+id/aerr_report"
48             android:layout_width="match_parent"
49             android:layout_height="wrap_content"
50             android:text="@string/aerr_report"
51             android:drawableStart="@drawable/ic_feedback"
52             style="@style/aerr_list_item"
53     />
55     <Button
56             android:id="@+id/aerr_mute"
57             android:layout_width="match_parent"
58             android:layout_height="wrap_content"
59             android:text="@string/aerr_mute"
60             android:drawableStart="@drawable/ic_eject_24dp"
61             style="@style/aerr_list_item"
62     />
65 </LinearLayout>