Files
android_development/apps/Development/res/layout/cache_abuser.xml
Dianne Hackborn 5b6b540207 New development tool for creating cache files.
Change-Id: I5d4bc5f41a08225a618f68b7afb3b5b3037d96d6
2012-07-12 14:50:08 -07:00

54 lines
2.1 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.
-->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button android:id="@+id/start_internal_abuse"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/cache_abuser_start_internal_abuse" />
<Button android:id="@+id/start_slow_internal_abuse"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/cache_abuser_start_slow_internal_abuse" />
<Button android:id="@+id/start_external_abuse"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/cache_abuser_start_external_abuse" />
<Button android:id="@+id/start_slow_external_abuse"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/cache_abuser_start_slow_external_abuse" />
<Button android:id="@+id/stop_abuse"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/cache_abuser_stop_abuse" />
</LinearLayout>
</ScrollView>