blob: 738805acb6dcae4a2a74c3cf902c865f1db1efb0 [file] [log] [blame]
Dianne Hackborn04486732013-09-04 15:47:59 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 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
17<ScrollView
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="match_parent"
21 android:clipToPadding="false"
22 android:scrollbarStyle="@integer/preference_scrollbar_style">
23
24 <LinearLayout
25 android:id="@+id/all_details"
26 android:layout_width="match_parent"
27 android:layout_height="match_parent"
28 android:paddingTop="5dip"
29 android:paddingBottom="5dip"
Fabrice Di Meglio200cca42014-06-26 13:48:55 -070030 android:orientation="vertical"
31 android:paddingStart="?android:attr/listPreferredItemPaddingStart"
32 android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">
Dianne Hackborn04486732013-09-04 15:47:59 -070033
34 <include layout="@layout/app_percentage_item" />
35
Dianne Hackborn04486732013-09-04 15:47:59 -070036 <LinearLayout
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070037 android:layout_width="match_parent"
38 android:layout_height="match_parent"
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070039 android:orientation="vertical">
Dianne Hackborn04486732013-09-04 15:47:59 -070040
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070041 <!-- Force stop and report buttons -->
42 <LinearLayout
43 android:id="@+id/two_buttons_panel"
44 android:layout_width="match_parent"
45 android:layout_height="wrap_content"
46 android:paddingBottom="6dip"
47 android:orientation="vertical">
Dianne Hackborn04486732013-09-04 15:47:59 -070048
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070049 <include layout="@layout/two_buttons_panel"/>
50 </LinearLayout>
Dianne Hackborn04486732013-09-04 15:47:59 -070051
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070052 <LinearLayout
Dianne Hackbornb94079a2015-01-30 18:19:38 -080053 android:id="@+id/processes"
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070054 android:layout_width="match_parent"
55 android:layout_height="wrap_content"
56 android:orientation="vertical">
Dianne Hackborn04486732013-09-04 15:47:59 -070057
Dianne Hackbornb94079a2015-01-30 18:19:38 -080058 <!-- Insert process items here -->
Dianne Hackborn04486732013-09-04 15:47:59 -070059
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070060 </LinearLayout>
Dianne Hackborn04486732013-09-04 15:47:59 -070061
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070062 <TextView
Dianne Hackbornb94079a2015-01-30 18:19:38 -080063 android:id="@+id/services_label"
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070064 style="?android:attr/listSeparatorTextViewStyle"
65 android:text="@string/services_subtitle" />
66
67 <LinearLayout
68 android:id="@+id/services"
69 android:layout_width="match_parent"
70 android:layout_height="wrap_content"
71 android:orientation="vertical">
72
73 <!-- Insert service items here -->
74
75 </LinearLayout>
Dianne Hackborn04486732013-09-04 15:47:59 -070076
77 </LinearLayout>
78
79 </LinearLayout>
Fabrice Di Meglio0ec42512014-06-18 16:07:45 -070080
Dianne Hackborn04486732013-09-04 15:47:59 -070081</ScrollView>