1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2007 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 xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="match_parent" 19 android:layout_height="match_parent"> 20 21 <LinearLayout 22 android:orientation="vertical" 23 android:layout_width="match_parent" 24 android:layout_height="match_parent" 25 android:padding="4dip" > 26 27 <TextView android:id="@+id/packageView" 28 android:layout_width="match_parent" android:layout_height="wrap_content" 29 android:textStyle="bold" /> 30 31 <LinearLayout 32 android:layout_width="match_parent" android:layout_height="wrap_content" 33 android:orientation="horizontal" 34 android:paddingTop="4dip" 35 android:paddingBottom="6dip" 36 android:paddingRight="4dip" > 37 38 <ImageView android:id="@+id/icon" 39 android:layout_width="wrap_content" android:layout_height="wrap_content" 40 android:paddingRight="8dip" /> 41 42 <LinearLayout 43 android:layout_width="wrap_content" android:layout_height="wrap_content" 44 android:orientation="vertical"> 45 46 <TextView android:id="@+id/classView" 47 android:layout_width="match_parent" android:layout_height="wrap_content" /> 48 49 <TextView android:id="@+id/label" 50 android:layout_width="match_parent" android:layout_height="wrap_content" /> 51 52 <TextView android:id="@+id/disabled" 53 android:layout_width="match_parent" android:layout_height="wrap_content" 54 android:text="@string/disabled" /> 55 56 <TextView android:id="@+id/system" 57 android:layout_width="match_parent" android:layout_height="wrap_content" 58 android:text="@string/system" /> 59 60 <TextView android:id="@+id/debuggable" 61 android:layout_width="match_parent" android:layout_height="wrap_content" 62 android:text="@string/debuggable" /> 63 64 <TextView android:id="@+id/nocode" 65 android:layout_width="match_parent" android:layout_height="wrap_content" 66 android:text="@string/nocode" /> 67 68 <TextView android:id="@+id/persistent" 69 android:layout_width="match_parent" android:layout_height="wrap_content" 70 android:text="@string/persistent" /> 71 72 </LinearLayout> 73 74 <Button android:id="@+id/restart" 75 android:layout_width="wrap_content" 76 android:layout_height="wrap_content" 77 android:layout_gravity="center" 78 android:text="@string/restart" /> 79 80 </LinearLayout> 81 82 <TextView style="@style/SummaryCategoryLayout" 83 android:layout_width="match_parent" android:layout_height="wrap_content" 84 android:textStyle="bold" android:text="@string/package_summary_process_label" /> 85 86 <TextView android:id="@+id/process" 87 android:layout_width="match_parent" android:layout_height="wrap_content" /> 88 89 <TextView style="@style/SummaryCategoryLayout" 90 android:layout_width="match_parent" android:layout_height="wrap_content" 91 android:textStyle="bold" android:text="@string/package_summary_uid_label" /> 92 93 <TextView android:id="@+id/uid" 94 android:layout_width="match_parent" android:layout_height="wrap_content" /> 95 96 <TextView style="@style/SummaryCategoryLayout" 97 android:layout_width="match_parent" android:layout_height="wrap_content" 98 android:textStyle="bold" android:text="@string/package_summary_task_label" /> 99 100 <TextView android:id="@+id/task" 101 android:layout_width="match_parent" android:layout_height="wrap_content" /> 102 103 <TextView style="@style/SummaryCategoryLayout" 104 android:layout_width="match_parent" android:layout_height="wrap_content" 105 android:textStyle="bold" android:text="@string/package_summary_version_label" /> 106 107 <TextView android:id="@+id/version" 108 android:layout_width="match_parent" android:layout_height="wrap_content" /> 109 110 <TextView style="@style/SummaryCategoryLayout" 111 android:layout_width="match_parent" android:layout_height="wrap_content" 112 android:textStyle="bold" android:text="@string/package_summary_source_label" /> 113 114 <TextView android:id="@+id/source" 115 android:layout_width="match_parent" android:layout_height="wrap_content" /> 116 117 <TextView style="@style/SummaryCategoryLayout" 118 android:layout_width="match_parent" android:layout_height="wrap_content" 119 android:textStyle="bold" android:text="@string/package_summary_data_label" /> 120 121 <TextView android:id="@+id/data" 122 android:layout_width="match_parent" android:layout_height="wrap_content" /> 123 124 <LinearLayout android:id="@+id/activities" style="@style/SummaryCategoryLayout"> 125 <TextView style="@style/SummaryCategoryHeader" 126 android:text="@string/package_summary_activities_label" /> 127 </LinearLayout> 128 129 <LinearLayout android:id="@+id/receivers" style="@style/SummaryCategoryLayout"> 130 <TextView style="@style/SummaryCategoryHeader" 131 android:text="@string/package_summary_receivers_label" /> 132 </LinearLayout> 133 134 <LinearLayout android:id="@+id/services" style="@style/SummaryCategoryLayout"> 135 <TextView style="@style/SummaryCategoryHeader" 136 android:text="@string/package_summary_services_label" /> 137 </LinearLayout> 138 139 <LinearLayout android:id="@+id/providers" style="@style/SummaryCategoryLayout"> 140 <TextView style="@style/SummaryCategoryHeader" 141 android:text="@string/package_summary_providers_label" /> 142 </LinearLayout> 143 144 <LinearLayout android:id="@+id/instrumentation" style="@style/SummaryCategoryLayout"> 145 <TextView style="@style/SummaryCategoryHeader" 146 android:text="@string/package_summary_instrumentation_label" /> 147 </LinearLayout> 148 149 </LinearLayout> 150</ScrollView> 151 152