79 lines
No EOL
3.5 KiB
XML
79 lines
No EOL
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
tools:context=".views.activities.CrashActivity">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
android:id="@+id/tool_bar"
|
|
style="?attr/collapsingToolbarLayoutLargeStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/collapsingToolbarLayoutLargeSize"
|
|
app:collapsedTitleTextAppearance="?textAppearanceTitleLarge"
|
|
app:expandedTitleTextAppearance="?textAppearanceHeadlineLarge"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"
|
|
app:titleCollapseMode="scale">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/top_app_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:elevation="0dp"
|
|
app:layout_collapseMode="pin"
|
|
app:title="@string/error_title" />
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<me.zhanghai.android.fastscroll.FastScrollNestedScrollView
|
|
android:id="@+id/nested_scroll_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="20dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginEnd="20dp"
|
|
android:text="@string/error_tips"
|
|
android:textColor="?attr/colorOnSurfaceVariant" />
|
|
|
|
<TextView
|
|
android:id="@+id/crash_log"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="20dp"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_marginEnd="20dp"
|
|
android:fontFamily="monospace"
|
|
android:text="@string/no_crash_logs"
|
|
android:textColor="?attr/colorOnSurface"
|
|
android:textIsSelectable="true"
|
|
android:textSize="13sp" />
|
|
</LinearLayout>
|
|
</me.zhanghai.android.fastscroll.FastScrollNestedScrollView>
|
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
android:id="@+id/exit_app"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_margin="16dp"
|
|
android:text="@string/exit_app"
|
|
app:icon="@drawable/ic_exit" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |