Xml文件  |  141行  |  5.37 KB

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 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"
            android:id="@+id/toplevel">
    <SurfaceView
        android:id="@+id/surface"
        android:layout_width="1dip"
        android:layout_height="1dip" />
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                    android:orientation="vertical"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent">
        <ImageView
           android:id="@+id/display"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content" />
        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                      android:orientation="horizontal"
                      android:layout_width="fill_parent"
                      android:layout_height="wrap_content">
          <Button
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:text="@string/benchmark"
             android:onClick="benchmark"/>
          <TextView
             android:id="@+id/benchmarkText"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:textSize="8pt"
             android:text="@string/saturation"/>
        </LinearLayout>
	<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
		      android:layout_width="fill_parent" android:layout_height="fill_parent"
		      android:id="@+id/layoutContainer" android:orientation="horizontal">
	  <RelativeLayout
	     android:layout_width="0dip"
	     android:layout_height="fill_parent"
	     android:layout_weight="0.40">
	    <TextView
               android:layout_width="fill_parent"
               android:layout_height="fill_parent"
	       android:gravity="center"
               android:text="@string/filter1_label"
               />
	  </RelativeLayout>
	  <RelativeLayout
	     android:layout_width="0dip"
	     android:layout_height="fill_parent"
	     android:layout_weight="0.60">
	    <Spinner
               android:id="@+id/filterselection"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"/>
	  </RelativeLayout>
	</LinearLayout>

	<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
		      android:layout_width="fill_parent" android:layout_height="fill_parent"
		      android:id="@+id/layoutContainer" android:orientation="horizontal">
	  <RelativeLayout
	     android:layout_width="0dip"
	     android:layout_height="fill_parent"
	     android:layout_weight="0.40">
	    <TextView
               android:layout_width="fill_parent"
               android:layout_height="fill_parent"
	       android:gravity="center"
               android:text="@string/filter2_label"
               />
	  </RelativeLayout>
	  <RelativeLayout
	     android:layout_width="0dip"
	     android:layout_height="fill_parent"
	     android:layout_weight="0.60">
	    <Spinner
               android:id="@+id/filter2selection"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"/>
	  </RelativeLayout>
	</LinearLayout>

	<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
		      android:layout_width="fill_parent" android:layout_height="fill_parent"
		      android:id="@+id/layoutContainer" android:orientation="horizontal">
	  <RelativeLayout
	     android:layout_width="0dip"
	     android:layout_height="fill_parent"
	     android:layout_weight="0.40">
	    <TextView
               android:layout_width="fill_parent"
               android:layout_height="fill_parent"
	       android:gravity="center"
               android:text="@string/mode_label"
               />
	  </RelativeLayout>
	  <RelativeLayout
	     android:layout_width="0dip"
	     android:layout_height="fill_parent"
	     android:layout_weight="0.60">
	    <Spinner
               android:id="@+id/modeselection"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"/>
	  </RelativeLayout>
	</LinearLayout>

        <Spinner
           android:id="@+id/spinner1"
           android:layout_width="fill_parent"
           android:layout_height="wrap_content"/>
        <Button
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:text="@string/benchmark_all"
           android:onClick="benchmark_all"/>
      </LinearLayout>
    </ScrollView>
</LinearLayout>