1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* //device/apps/Settings/res/layout/keyguard.xml 4** 5** Copyright 2007, The Android Open Source Project 6** 7** Licensed under the Apache License, Version 2.0 (the "License"); 8** you may not use this file except in compliance with the License. 9** You may obtain a copy of the License at 10** 11** http://www.apache.org/licenses/LICENSE-2.0 12** 13** Unless required by applicable law or agreed to in writing, software 14** distributed under the License is distributed on an "AS IS" BASIS, 15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16** See the License for the specific language governing permissions and 17** limitations under the License. 18*/ 19--> 20 21<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 22 android:layout_width="match_parent" 23 android:layout_height="match_parent"> 24 25 <LinearLayout 26 android:layout_width="match_parent" android:layout_height="match_parent" 27 android:orientation="vertical" 28 android:paddingTop="8dip" android:paddingLeft="2dip" android:paddingRight="2dip" > 29 30 <TextView android:id="@+id/packageView" 31 android:layout_width="match_parent" android:layout_height="wrap_content" 32 android:textStyle="bold" /> 33 34 <LinearLayout 35 android:layout_width="match_parent" android:layout_height="wrap_content" 36 android:orientation="horizontal" 37 android:paddingTop="4dip" 38 android:paddingBottom="6dip" > 39 40 <ImageView android:id="@+id/icon" 41 android:layout_width="wrap_content" android:layout_height="wrap_content" 42 android:paddingRight="8dip" /> 43 44 <LinearLayout 45 android:layout_width="match_parent" android:layout_height="wrap_content" 46 android:orientation="vertical"> 47 48 <TextView android:id="@+id/classView" 49 android:layout_width="match_parent" android:layout_height="wrap_content" /> 50 51 <TextView android:id="@+id/label" 52 android:layout_width="match_parent" android:layout_height="wrap_content" /> 53 54 <TextView android:id="@+id/launch" 55 android:layout_width="match_parent" android:layout_height="wrap_content" /> 56 57 </LinearLayout> 58 59 </LinearLayout> 60 61 <TextView style="@style/SummaryCategoryLayout" 62 android:layout_width="match_parent" android:layout_height="wrap_content" 63 android:textStyle="bold" android:text="@string/show_activity_process_label" /> 64 65 <TextView android:id="@+id/process" 66 android:layout_width="match_parent" android:layout_height="wrap_content" /> 67 68 <TextView style="@style/SummaryCategoryLayout" 69 android:layout_width="match_parent" android:layout_height="wrap_content" 70 android:textStyle="bold" android:text="@string/show_activity_task_affinity_label" /> 71 72 <TextView android:id="@+id/taskAffinity" 73 android:layout_width="match_parent" android:layout_height="wrap_content" /> 74 75 <TextView style="@style/SummaryCategoryLayout" 76 android:layout_width="match_parent" android:layout_height="wrap_content" 77 android:textStyle="bold" android:text="@string/show_activity_required_permission_label" /> 78 79 <TextView android:id="@+id/permission" 80 android:layout_width="match_parent" android:layout_height="wrap_content" /> 81 82 <TextView style="@style/SummaryCategoryLayout" 83 android:layout_width="match_parent" android:layout_height="wrap_content" 84 android:textStyle="bold" android:text="@string/show_activity_multiprocess_label" /> 85 86 <TextView android:id="@+id/multiprocess" 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/show_activity_clear_on_background_label" /> 92 93 <TextView android:id="@+id/clearOnBackground" 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/show_activity_state_not_needed_label" /> 99 100 <TextView android:id="@+id/stateNotNeeded" 101 android:layout_width="match_parent" android:layout_height="wrap_content" /> 102 103 </LinearLayout> 104 105</ScrollView> 106 107