diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-10-27 12:58:16 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2011-10-27 16:03:14 -0700 |
commit | d4c4b76889f2bd2e2e34ba9fc835370020524ded (patch) | |
tree | 3593975f3011e1ee7099420b8b01edaec91f2e97 /tests/FrameworkPerf/res/layout/main.xml | |
parent | e49cf107e2533b7ca71c500bc20a0f6dcdf9efdc (diff) | |
download | frameworks_base-d4c4b76889f2bd2e2e34ba9fc835370020524ded.zip frameworks_base-d4c4b76889f2bd2e2e34ba9fc835370020524ded.tar.gz frameworks_base-d4c4b76889f2bd2e2e34ba9fc835370020524ded.tar.bz2 |
New framework performance tests.
Change-Id: Ib8cc6704f508b7516ba0a30aa71bb88ef028691d
Diffstat (limited to 'tests/FrameworkPerf/res/layout/main.xml')
-rw-r--r-- | tests/FrameworkPerf/res/layout/main.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/tests/FrameworkPerf/res/layout/main.xml b/tests/FrameworkPerf/res/layout/main.xml new file mode 100644 index 0000000..2e9c500 --- /dev/null +++ b/tests/FrameworkPerf/res/layout/main.xml @@ -0,0 +1,54 @@ +<?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:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + > + + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + > + <Button android:id="@+id/start" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/start" + /> + <Button android:id="@+id/stop" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/stop" + /> + </LinearLayout> + + <ScrollView android:id="@+id/scroll" + android:layout_width="match_parent" + android:layout_height="0px" + android:layout_weight="1" + > + <TextView android:id="@+id/log" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="25dp" + android:textSize="12sp" + android:textColor="#ffffffff" + /> + </ScrollView> + +</LinearLayout> |