2018-09-20 20:27:18 +00:00
|
|
|
<?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="wrap_content"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:layout_gravity="bottom">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/camera_capture_button"
|
|
|
|
android:layout_width="80dp"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="@drawable/ic_camera_shutter" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/camera_flip_button"
|
2019-05-08 11:48:43 +00:00
|
|
|
android:layout_width="wrap_content"
|
2018-09-20 20:27:18 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toStartOf="@+id/camera_capture_button"
|
|
|
|
android:layout_marginEnd="40dp"
|
|
|
|
android:layout_centerVertical="true"
|
2019-05-08 11:48:43 +00:00
|
|
|
android:src="@drawable/ic_switch_camera_32"
|
2018-09-20 20:27:18 +00:00
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|