67 lines
No EOL
2 KiB
XML
67 lines
No EOL
2 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:background="?attr/card_bg"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top"
|
|
android:layout_marginLeft="@dimen/dashFavIconMargin"
|
|
android:layout_marginRight="@dimen/dashFavIconMargin"
|
|
android:src="@drawable/ic_crashlog"/>
|
|
|
|
<TextView
|
|
android:id="@+id/error_header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="@dimen/subHeaderPadding"
|
|
android:layout_marginTop="@dimen/subHeaderPadding"
|
|
android:textColor="?android:textColorPrimary"
|
|
tools:text="@string/lorem_ipsum"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/dashHeaderHeight"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/error_btn"
|
|
style="?attr/dashboardGeneralButtonStyle"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:text="@string/send_report"/>
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
<Button
|
|
android:id="@+id/error_cancel"
|
|
style="?attr/dashboardGeneralButtonStyle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/shared_string_dismiss"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |