68 lines
2.3 KiB
XML
68 lines
2.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:animateLayoutChanges="true"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingBottom="8dp"
|
||
|
android:paddingLeft="24dp"
|
||
|
android:paddingRight="24dp"
|
||
|
android:paddingTop="20dp">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/icon"
|
||
|
android:layout_width="48dp"
|
||
|
android:layout_height="48dp"
|
||
|
android:tint="#FFFFFF" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/error_code"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Headline" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/error_title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Headline" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/error_description"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:textAlignment="center"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="36dp"
|
||
|
android:animateLayoutChanges="true"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<View
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_weight="1" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/mute"
|
||
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:onClick="muteClicked"
|
||
|
android:text="@string/mute_alert" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/confirm"
|
||
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:onClick="confirmClicked"
|
||
|
android:text="@string/confirm" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|