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="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_gravity="right|end">
|
|
|
|
|
|
|
|
<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"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-13 23:05:25 +00:00
|
|
|
android:layout_above="@+id/camera_capture_button"
|
|
|
|
android:layout_marginBottom="40dp"
|
2018-09-20 20:27:18 +00:00
|
|
|
android:layout_centerHorizontal="true"
|
2019-03-15 00:01:23 +00:00
|
|
|
android:src="@drawable/ic_switch_camera_36"
|
2018-09-20 20:27:18 +00:00
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|