2024-01-17 08:46:26 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-01-17 08:55:00 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2024-01-17 08:46:26 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2024-01-17 08:55:00 +00:00
|
|
|
tools:context=".GeneratedQrFragment" >
|
2024-01-17 08:46:26 +00:00
|
|
|
|
2024-01-17 08:55:00 +00:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
2024-01-17 08:46:26 +00:00
|
|
|
android:layout_width="match_parent"
|
2024-01-17 08:55:00 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:background="@color/white"
|
|
|
|
android:elevation="4dp"
|
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:title="Preview"/>
|
2024-01-17 08:46:26 +00:00
|
|
|
|
2024-01-17 08:55:00 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/result_bitmap_image_view"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:src="@drawable/close_fill0_wght400_grad0_opsz24"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|