Files
android_development/samples/ApiDemos/res/layout/isolated_service_controller.xml
Dianne Hackborn 37f02d8042 New API demo for isolated processes.
Change-Id: I2b2117ae5e5005bfffe8d89df5e06cee32da603c
2012-02-09 10:51:07 -08:00

89 lines
3.6 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.
-->
<!-- Demonstrates isolated services.
See corresponding Java code com.android.sdk.app.IsolatedSerice.java. -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:padding="4dip"
android:gravity="center_horizontal"
android:layout_width="match_parent" android:layout_height="match_parent">
<TextView
android:layout_width="match_parent" android:layout_height="wrap_content"
android:layout_weight="0"
android:paddingBottom="4dip"
android:gravity="center_vertical|center_horizontal"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/isolated_service_controller"/>
<LinearLayout android:orientation="horizontal" android:paddingTop="16dp"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<Button android:id="@+id/start1"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/start_service_1">
<requestFocus />
</Button>
<Button android:id="@+id/stop1"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/stop_service_1">
</Button>
</LinearLayout>
<LinearLayout android:orientation="horizontal"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<CheckBox android:id="@+id/bind1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/bind_service_1" />
<TextView android:id="@+id/status1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="16dp" />
</LinearLayout>
<LinearLayout android:orientation="horizontal" android:paddingTop="16dp"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<Button android:id="@+id/start2"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/start_service_2">
<requestFocus />
</Button>
<Button android:id="@+id/stop2"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/stop_service_2">
</Button>
</LinearLayout>
<LinearLayout android:orientation="horizontal"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<CheckBox android:id="@+id/bind2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/bind_service_2" />
<TextView android:id="@+id/status2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="16dp" />
</LinearLayout>
</LinearLayout>