|
@@ -1,56 +0,0 @@
|
|
|
-<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<androidx.constraintlayout.widget.ConstraintLayout 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">
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/imageView2"
|
|
|
- android:layout_width="133dp"
|
|
|
- android:layout_height="148dp"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent"
|
|
|
- app:srcCompat="@mipmap/ic_red_warning" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/textView2"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:gravity="center"
|
|
|
- android:textSize="32sp"
|
|
|
- android:textColor="#000000"
|
|
|
- android:text="Warning:\n Do you really want to cancel?"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/imageView2" />
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/closing_alert_yes_button"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
-
|
|
|
- android:layout_marginTop="132dp"
|
|
|
- android:layout_marginBottom="16dp"
|
|
|
- android:text="Yes"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toEndOf="@+id/closing_alert_no_button"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/imageView2"
|
|
|
- tools:ignore="MissingConstraints" />
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/closing_alert_no_button"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="132dp"
|
|
|
- android:layout_marginBottom="16dp"
|
|
|
- android:text="No"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintEnd_toStartOf="@+id/closing_alert_yes_button"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
-
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/imageView2"
|
|
|
- tools:ignore="MissingConstraints" />
|
|
|
-</androidx.constraintlayout.widget.ConstraintLayout>
|