You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.5 KiB
101 lines
3.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2014 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
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/panels"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
tools:context="com.example.android.hdrviewfinder.HdrViewfinderActivity">
|
|
|
|
<com.example.android.hdrviewfinder.FixedAspectSurfaceView
|
|
android:id="@+id/preview"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="4"
|
|
custom:aspectRatio="1.333"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/control_bar_contents"
|
|
android:layout_width="0px"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:layout_margin="5dp">
|
|
|
|
<Button
|
|
android:id="@+id/help_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/help_button"/>
|
|
|
|
<TextView
|
|
android:id="@+id/mode_label"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="16sp"
|
|
tools:text="MODE: HDR"/>
|
|
|
|
<TextView
|
|
android:id="@+id/auto_exposure_label"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/auto_exposure_label"/>
|
|
|
|
<TextView
|
|
android:id="@+id/auto_exposure"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textSize="20sp"
|
|
tools:text="33.33 ms"/>
|
|
|
|
<TextView
|
|
android:id="@+id/even_exposure_label"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/even_exposure_label"/>
|
|
|
|
<TextView
|
|
android:id="@+id/even_exposure"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textSize="20sp"
|
|
tools:text="30.30 ms"/>
|
|
|
|
<TextView
|
|
android:id="@+id/odd_exposure_label"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/odd_exposure_label"/>
|
|
|
|
<TextView
|
|
android:id="@+id/odd_exposure"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textSize="20sp"
|
|
tools:text="30.30 ms"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|