Files
Driver/app/src/main/res/layout/fragment_image_viewer.xml
hmalik144 1b00d7d40d - android bumblebee gradle migration
- lint driverDebug
 - view binding migration

Took 12 hours 10 minutes
2023-03-24 19:15:48 +00: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/cars" />
<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:src="@drawable/ic_file_download_black_24dp"
android:contentDescription="@string/floating_action_button" />
</RelativeLayout>