main.xml revision 252db06ac6a87b00279534959cf5f6fdd5890c97
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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:layout_width="match_parent"
18              android:layout_height="match_parent"
19              android:orientation="vertical"
20              android:padding="12dp"
21        >
22    <ListView
23            android:id="@android:id/list"
24            android:layout_width="match_parent"
25            android:layout_height="0dp"
26            android:padding="4dp"
27            android:layout_marginBottom="16dp"
28            android:text="@string/working_as_intended"
29            android:layout_weight="1"
30            android:choiceMode="singleChoice"
31            />
32
33    <TextView android:id="@android:id/empty"
34              android:layout_width="match_parent"
35              android:layout_height="0dp"
36              android:padding="4dp"
37              android:layout_marginBottom="16dp"
38              android:text="@string/working_as_intended"
39              android:layout_weight="1"
40            />
41    <Button
42            android:id="@+id/launch_settings"
43            android:layout_width="match_parent"
44            android:layout_height="wrap_content"
45            android:text="@string/launch_to_disable"
46            android:onClick="launchSettings"
47            android:layout_weight="0"
48            />
49</LinearLayout>
50
51