Files
frameworks_base/tests/RenderScriptTests/LivePreview/res/layout/cf_main.xml
Jason Sams 0cb555ffcc Filter performance tests.
Change-Id: Ic1c898ac41372da7b0a25ebb4c83b075c7467e35
2012-06-13 14:40:03 -07:00

97 lines
3.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2012 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"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="3" >
<TextureView
android:id="@+id/preview_view"
android:layout_height="0dp"
android:layout_width="fill_parent"
android:layout_weight="3" />
<TextView
android:id="@+id/preview_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/cf_preview_label"
android:padding="2dp"
android:textSize="16sp"
android:gravity="center" />
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="3" >
<ImageView
android:id="@+id/format_view"
android:layout_height="0dp"
android:layout_width="fill_parent"
android:layout_weight="3" />
<TextView
android:id="@+id/format_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/cf_format_label"
android:padding="2dp"
android:textSize="16sp"
android:gravity="center" />
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="2" >
<Spinner
android:id="@+id/cameras_selection"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<Spinner
android:id="@+id/resolution_selection"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<Spinner
android:id="@+id/format_selection"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>