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:fillViewport="true" 19 android:layout_width="match_parent" 20 android:layout_height="match_parent"> 21 22 <LinearLayout android:orientation="vertical" 23 android:layout_width="match_parent" 24 android:layout_height="match_parent" 25 android:padding="4dip" > 26 27 <LinearLayout android:orientation="horizontal" 28 android:layout_width="match_parent" 29 android:layout_height="wrap_content" 30 android:padding="4dip" > 31 <TextView android:id="@+id/perm_name_label" 32 android:layout_width="wrap_content" 33 android:layout_height="wrap_content" 34 android:text="@string/perm_name_text" 35 android:textStyle="bold" /> 36 <TextView android:id="@+id/perm_name" 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content"/> 39 </LinearLayout> 40 41 <LinearLayout android:orientation="horizontal" 42 android:layout_width="match_parent" 43 android:layout_height="wrap_content" 44 android:padding="4dip" > 45 <TextView android:id="@+id/perm_desc_label" 46 android:layout_width="wrap_content" 47 android:layout_height="wrap_content" 48 android:text="@string/perm_desc_text" 49 android:textStyle="bold" /> 50 <TextView android:id="@+id/perm_desc" 51 android:layout_width="wrap_content" 52 android:layout_height="wrap_content"/> 53 </LinearLayout> 54 55 <LinearLayout android:orientation="horizontal" 56 android:layout_width="match_parent" 57 android:layout_height="wrap_content" 58 android:padding="4dip" > 59 <TextView android:id="@+id/perm_group_label" 60 android:layout_width="wrap_content" 61 android:layout_height="wrap_content" 62 android:text="@string/perm_group_text" 63 android:textStyle="bold" /> 64 <TextView android:id="@+id/perm_group" 65 android:layout_width="wrap_content" 66 android:layout_height="wrap_content"/> 67 </LinearLayout> 68 69 <LinearLayout android:orientation="horizontal" 70 android:layout_width="match_parent" 71 android:layout_height="wrap_content" 72 android:padding="4dip" > 73 <TextView android:id="@+id/perm_protection_label" 74 android:layout_width="wrap_content" 75 android:layout_height="wrap_content" 76 android:text="@string/perm_protection_text" 77 android:textStyle="bold" /> 78 <TextView android:id="@+id/perm_protection" 79 android:layout_width="wrap_content" 80 android:layout_height="wrap_content"/> 81 </LinearLayout> 82 83 <LinearLayout android:orientation="horizontal" 84 android:layout_width="match_parent" 85 android:layout_height="wrap_content" 86 android:padding="4dip" > 87 <TextView android:id="@+id/perm_source_label" 88 android:layout_width="wrap_content" 89 android:layout_height="wrap_content" 90 android:text="@string/perm_source_text" 91 android:textStyle="bold" /> 92 <TextView android:id="@+id/perm_source" 93 android:layout_width="wrap_content" 94 android:layout_height="wrap_content"/> 95 </LinearLayout> 96 97 <LinearLayout android:orientation="horizontal" 98 android:layout_width="match_parent" 99 android:layout_height="wrap_content" 100 android:padding="4dip" > 101 <TextView android:id="@+id/source_uid_label" 102 android:layout_width="wrap_content" 103 android:layout_height="wrap_content" 104 android:text="@string/source_uid_text" 105 android:textStyle="bold" /> 106 <TextView android:id="@+id/source_uid" 107 android:layout_width="wrap_content" 108 android:layout_height="wrap_content"/> 109 </LinearLayout> 110 <LinearLayout android:id="@+id/shared_pkgs_panel" 111 android:orientation="vertical" 112 android:layout_width="match_parent" 113 android:layout_height="wrap_content" 114 android:padding="4dip" > 115 <TextView android:id="@+id/shared_pkgs_label" 116 android:layout_width="wrap_content" 117 android:layout_height="wrap_content" 118 android:text="@string/shared_pkgs_text" 119 android:textStyle="bold" /> 120 <TextView android:id="@+id/shared_pkgs" 121 android:layout_width="wrap_content" 122 android:layout_height="wrap_content"/> 123 </LinearLayout> 124 <TextView android:id="@+id/perm_list_header" 125 android:layout_width="wrap_content" 126 android:layout_height="wrap_content" 127 android:paddingBottom="3dip" 128 android:text="@string/perm_list_header_text" 129 android:textStyle="bold" /> 130 <ListView android:id="@android:id/list" 131 android:layout_width="match_parent" 132 android:layout_height="wrap_content"/> 133 </LinearLayout> 134</ScrollView> 135 136