Files
Driver/app/src/main/res/layout/fragment_image_viewer.xml
2023-08-17 14:36:20 +01:00

28 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff">
<com.github.chrisbanes.photoview.PhotoView
android:id="@+id/photo_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
tools:src="@drawable/splash_screen" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/download_pic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
android:contentDescription="@string/floating_action_button"
android:src="@drawable/ic_file_download_black_24dp" />
</RelativeLayout>