Dianne Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 1 | <?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 Meglio | 200cca4 | 2014-06-26 13:48:55 -0700 | [diff] [blame] | 30 | android:orientation="vertical" |
| 31 | android:paddingStart="?android:attr/listPreferredItemPaddingStart" |
| 32 | android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"> |
Dianne Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 33 | |
| 34 | <include layout="@layout/app_percentage_item" /> |
| 35 | |
Dianne Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 36 | <LinearLayout |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 37 | android:layout_width="match_parent" |
| 38 | android:layout_height="match_parent" |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 39 | android:orientation="vertical"> |
Dianne Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 40 | |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 41 | <!-- 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 Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 48 | |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 49 | <include layout="@layout/two_buttons_panel"/> |
| 50 | </LinearLayout> |
Dianne Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 51 | |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 52 | <LinearLayout |
Dianne Hackborn | b94079a | 2015-01-30 18:19:38 -0800 | [diff] [blame] | 53 | android:id="@+id/processes" |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 54 | android:layout_width="match_parent" |
| 55 | android:layout_height="wrap_content" |
| 56 | android:orientation="vertical"> |
Dianne Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 57 | |
Dianne Hackborn | b94079a | 2015-01-30 18:19:38 -0800 | [diff] [blame] | 58 | <!-- Insert process items here --> |
Dianne Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 59 | |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 60 | </LinearLayout> |
Dianne Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 61 | |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 62 | <TextView |
Dianne Hackborn | b94079a | 2015-01-30 18:19:38 -0800 | [diff] [blame] | 63 | android:id="@+id/services_label" |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 64 | 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 Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 76 | |
| 77 | </LinearLayout> |
| 78 | |
| 79 | </LinearLayout> |
Fabrice Di Meglio | 0ec4251 | 2014-06-18 16:07:45 -0700 | [diff] [blame] | 80 | |
Dianne Hackborn | 0448673 | 2013-09-04 15:47:59 -0700 | [diff] [blame] | 81 | </ScrollView> |