2015-04-16 05:38:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-06-08 18:07:46 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/controls"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="bottom"
|
|
|
|
tools:background="@android:color/darker_gray">
|
|
|
|
|
|
|
|
<ImageButton android:id="@+id/shutter_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:background="@drawable/quick_camera_shutter_ring"
|
|
|
|
android:src="@drawable/quick_shutter_button"
|
2015-11-23 23:19:05 +00:00
|
|
|
android:enabled="false"
|
2015-06-08 18:07:46 +00:00
|
|
|
android:padding="20dp"/>
|
|
|
|
|
|
|
|
<ImageButton android:id="@+id/fullscreen_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
2015-11-23 23:19:05 +00:00
|
|
|
android:background="@drawable/circle_touch_highlight_background"
|
2015-06-08 18:07:46 +00:00
|
|
|
android:src="@drawable/quick_camera_fullscreen"
|
|
|
|
android:padding="20dp" />
|
|
|
|
|
|
|
|
<ImageButton android:id="@+id/swap_camera_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_alignParentStart="true"
|
2015-11-23 23:19:05 +00:00
|
|
|
android:background="@drawable/circle_touch_highlight_background"
|
2015-10-27 00:20:09 +00:00
|
|
|
android:src="@drawable/quick_camera_rear"
|
2015-11-23 23:19:05 +00:00
|
|
|
android:enabled="false"
|
2015-06-08 18:07:46 +00:00
|
|
|
android:padding="20dp"
|
|
|
|
android:visibility="invisible"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2015-04-16 05:38:33 +00:00
|
|
|
</RelativeLayout>
|