blob: 577c466e3847fbfdc9885b015eb9445d198b45c3 [file] [log] [blame]
Chris Craik5888ec22011-07-15 16:24:37 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17 android:orientation="vertical"
18 android:layout_width="match_parent"
19 android:layout_height="match_parent"
20 >
21 <LinearLayout
22 android:id="@+id/top"
23 android:layout_width="match_parent"
24 android:layout_height="wrap_content"
25 >
Chris Craik21555ab2011-07-21 11:52:19 -070026 <Spinner
27 android:id="@+id/movement"
Chris Craik5888ec22011-07-15 16:24:37 -070028 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"
Chris Craik21555ab2011-07-21 11:52:19 -070030 android:prompt="@string/movement_method"
Chris Craik5888ec22011-07-15 16:24:37 -070031 />
32 <Spinner
33 android:id="@+id/velocity"
34 android:layout_width="wrap_content"
35 android:layout_height="wrap_content"
36 android:gravity="center_horizontal"
37 android:prompt="@string/desired_scroll_velocity"
38 />
Chris Craik21555ab2011-07-21 11:52:19 -070039 <ToggleButton
40 android:id="@+id/capture"
41 android:layout_width="wrap_content"
42 android:layout_height="wrap_content"
43 android:textOn="@string/capture_stop"
44 android:textOff="@string/capture_start"
45 />
Chris Craik5888ec22011-07-15 16:24:37 -070046 <EditText
47 android:id="@+id/url"
48 android:layout_width="0dip"
49 android:layout_height="wrap_content"
50 android:inputType="textUri"
51 android:imeOptions="actionGo"
52 android:layout_weight="1"
53 />
Chris Craik21555ab2011-07-21 11:52:19 -070054 <Button
55 android:id="@+id/inspect"
56 android:layout_width="wrap_content"
57 android:layout_height="wrap_content"
58 android:text="@string/inspect_log"
59 />
Chris Craik5888ec22011-07-15 16:24:37 -070060 </LinearLayout>
61 <com.test.tilebenchmark.ProfiledWebView
62 android:id="@+id/web"
63 android:layout_width="match_parent"
64 android:layout_height="match_parent"
65 />
66</LinearLayout>