<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2015 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
android:orientation="horizontal"
android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:tools="http://schemas.android.com/tools"
xmlns:custom="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/panels">
<com.android.example.rscamera.CameraView
android:layout_height="wrap_content"
android:layout_width="0dp"
android:id="@+id/preview"
custom:aspectRatio="1.333"
android:layout_weight="4"
android:layout_gravity="center_vertical" />
<ViewFlipper
android:layout_height="match_parent"
android:layout_width="0px"
android:id="@+id/viewFlipper"
android:layout_weight="1">
<LinearLayout
android:orientation="vertical"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/control_bar_contents">
<Button
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/iso"
android:layout_gravity="center_horizontal"
android:onClick="setISO"
android:text="A ISO 1600" />
<Button
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/speed"
android:layout_gravity="center_horizontal"
android:onClick="setShutterSpeed"
android:text="A 1/30 s" />
<Button
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/focus"
android:layout_gravity="center_horizontal"
android:onClick="setFocus"
android:text="A 12.0m" />
<ImageButton
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_gravity="center_horizontal"
android:onClick="capture"
android:src="@drawable/ic_cam" />
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/slide">
<ImageButton
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/back"
android:layout_gravity="center_horizontal"
android:onClick="back"
android:src="@drawable/ic_back"
/>
<ImageButton
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/capture"
android:layout_gravity="center_horizontal"
android:onClick="capture"
android:src="@drawable/ic_cam" />
<RelativeLayout
android:layout_height="match_parent"
android:layout_width="match_parent">
<com.android.example.rscamera.VerticalSeekBar
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:id="@+id/focusbar"
android:layout_alignParentTop="true"
android:layout_centerInParent="true" />
</RelativeLayout>
</LinearLayout>
</ViewFlipper>
</LinearLayout>