This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
avh-plan-android/app/src/main/res/layout/diagnostics_dialog.xml
T
2019-04-29 19:27:51 +02:00

49 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="8dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/dialogtext"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:textColor="?attr/colorText"
android:paddingStart="24dp"
android:paddingEnd="24dp"
android:paddingBottom="24dp"
android:paddingTop="8dp"/>
<Button
android:id="@+id/btnResetLaunch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@color/accent"
android:textColor="@color/white"
android:layout_marginStart="24dp"
android:text="Reset launch counter"/>
<Button
android:id="@+id/btnResetNotif"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@color/accent"
android:textColor="@color/white"
android:layout_marginStart="24dp"
android:layout_marginBottom="16dp"
android:text="Reset notification counter"/>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</LinearLayout>