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
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
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.
18*/
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">
26
27
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    />
36
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    />
45
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    />
54
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    />
63
64
65</LinearLayout>
66