xref: /aosp_15_r20/development/apps/Development/res/layout/package_summary.xml (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1*90c8c64dSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*90c8c64dSAndroid Build Coastguard Worker<!-- Copyright (C) 2007 The Android Open Source Project
3*90c8c64dSAndroid Build Coastguard Worker
4*90c8c64dSAndroid Build Coastguard Worker     Licensed under the Apache License, Version 2.0 (the "License");
5*90c8c64dSAndroid Build Coastguard Worker     you may not use this file except in compliance with the License.
6*90c8c64dSAndroid Build Coastguard Worker     You may obtain a copy of the License at
7*90c8c64dSAndroid Build Coastguard Worker
8*90c8c64dSAndroid Build Coastguard Worker          http://www.apache.org/licenses/LICENSE-2.0
9*90c8c64dSAndroid Build Coastguard Worker
10*90c8c64dSAndroid Build Coastguard Worker     Unless required by applicable law or agreed to in writing, software
11*90c8c64dSAndroid Build Coastguard Worker     distributed under the License is distributed on an "AS IS" BASIS,
12*90c8c64dSAndroid Build Coastguard Worker     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*90c8c64dSAndroid Build Coastguard Worker     See the License for the specific language governing permissions and
14*90c8c64dSAndroid Build Coastguard Worker     limitations under the License.
15*90c8c64dSAndroid Build Coastguard Worker-->
16*90c8c64dSAndroid Build Coastguard Worker
17*90c8c64dSAndroid Build Coastguard Worker<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
18*90c8c64dSAndroid Build Coastguard Worker    android:layout_width="match_parent"
19*90c8c64dSAndroid Build Coastguard Worker    android:layout_height="match_parent">
20*90c8c64dSAndroid Build Coastguard Worker
21*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
22*90c8c64dSAndroid Build Coastguard Worker        android:orientation="vertical"
23*90c8c64dSAndroid Build Coastguard Worker        android:layout_width="match_parent"
24*90c8c64dSAndroid Build Coastguard Worker        android:layout_height="match_parent"
25*90c8c64dSAndroid Build Coastguard Worker        android:padding="4dip" >
26*90c8c64dSAndroid Build Coastguard Worker
27*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/packageView"
28*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content"
29*90c8c64dSAndroid Build Coastguard Worker            android:textStyle="bold" />
30*90c8c64dSAndroid Build Coastguard Worker
31*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout
32*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content"
33*90c8c64dSAndroid Build Coastguard Worker            android:orientation="horizontal"
34*90c8c64dSAndroid Build Coastguard Worker            android:paddingTop="4dip"
35*90c8c64dSAndroid Build Coastguard Worker            android:paddingBottom="6dip"
36*90c8c64dSAndroid Build Coastguard Worker            android:paddingRight="4dip" >
37*90c8c64dSAndroid Build Coastguard Worker
38*90c8c64dSAndroid Build Coastguard Worker            <ImageView android:id="@+id/icon"
39*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content" android:layout_height="wrap_content"
40*90c8c64dSAndroid Build Coastguard Worker                android:paddingRight="8dip" />
41*90c8c64dSAndroid Build Coastguard Worker
42*90c8c64dSAndroid Build Coastguard Worker            <LinearLayout
43*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content" android:layout_height="wrap_content"
44*90c8c64dSAndroid Build Coastguard Worker                android:orientation="vertical">
45*90c8c64dSAndroid Build Coastguard Worker
46*90c8c64dSAndroid Build Coastguard Worker                <TextView android:id="@+id/classView"
47*90c8c64dSAndroid Build Coastguard Worker                    android:layout_width="match_parent" android:layout_height="wrap_content" />
48*90c8c64dSAndroid Build Coastguard Worker
49*90c8c64dSAndroid Build Coastguard Worker                <TextView android:id="@+id/label"
50*90c8c64dSAndroid Build Coastguard Worker                    android:layout_width="match_parent" android:layout_height="wrap_content" />
51*90c8c64dSAndroid Build Coastguard Worker
52*90c8c64dSAndroid Build Coastguard Worker                <TextView android:id="@+id/disabled"
53*90c8c64dSAndroid Build Coastguard Worker                    android:layout_width="match_parent" android:layout_height="wrap_content"
54*90c8c64dSAndroid Build Coastguard Worker                    android:text="@string/disabled" />
55*90c8c64dSAndroid Build Coastguard Worker
56*90c8c64dSAndroid Build Coastguard Worker                <TextView android:id="@+id/system"
57*90c8c64dSAndroid Build Coastguard Worker                    android:layout_width="match_parent" android:layout_height="wrap_content"
58*90c8c64dSAndroid Build Coastguard Worker                    android:text="@string/system" />
59*90c8c64dSAndroid Build Coastguard Worker
60*90c8c64dSAndroid Build Coastguard Worker                <TextView android:id="@+id/debuggable"
61*90c8c64dSAndroid Build Coastguard Worker                    android:layout_width="match_parent" android:layout_height="wrap_content"
62*90c8c64dSAndroid Build Coastguard Worker                    android:text="@string/debuggable" />
63*90c8c64dSAndroid Build Coastguard Worker
64*90c8c64dSAndroid Build Coastguard Worker                <TextView android:id="@+id/nocode"
65*90c8c64dSAndroid Build Coastguard Worker                    android:layout_width="match_parent" android:layout_height="wrap_content"
66*90c8c64dSAndroid Build Coastguard Worker                    android:text="@string/nocode" />
67*90c8c64dSAndroid Build Coastguard Worker
68*90c8c64dSAndroid Build Coastguard Worker                <TextView android:id="@+id/persistent"
69*90c8c64dSAndroid Build Coastguard Worker                    android:layout_width="match_parent" android:layout_height="wrap_content"
70*90c8c64dSAndroid Build Coastguard Worker                    android:text="@string/persistent" />
71*90c8c64dSAndroid Build Coastguard Worker
72*90c8c64dSAndroid Build Coastguard Worker            </LinearLayout>
73*90c8c64dSAndroid Build Coastguard Worker
74*90c8c64dSAndroid Build Coastguard Worker            <Button android:id="@+id/restart"
75*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
76*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
77*90c8c64dSAndroid Build Coastguard Worker                android:layout_gravity="center"
78*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/restart" />
79*90c8c64dSAndroid Build Coastguard Worker
80*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
81*90c8c64dSAndroid Build Coastguard Worker
82*90c8c64dSAndroid Build Coastguard Worker        <TextView style="@style/SummaryCategoryLayout"
83*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content"
84*90c8c64dSAndroid Build Coastguard Worker            android:textStyle="bold" android:text="@string/package_summary_process_label" />
85*90c8c64dSAndroid Build Coastguard Worker
86*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/process"
87*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content" />
88*90c8c64dSAndroid Build Coastguard Worker
89*90c8c64dSAndroid Build Coastguard Worker        <TextView style="@style/SummaryCategoryLayout"
90*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content"
91*90c8c64dSAndroid Build Coastguard Worker            android:textStyle="bold" android:text="@string/package_summary_uid_label" />
92*90c8c64dSAndroid Build Coastguard Worker
93*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/uid"
94*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content" />
95*90c8c64dSAndroid Build Coastguard Worker
96*90c8c64dSAndroid Build Coastguard Worker        <TextView style="@style/SummaryCategoryLayout"
97*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content"
98*90c8c64dSAndroid Build Coastguard Worker            android:textStyle="bold" android:text="@string/package_summary_task_label" />
99*90c8c64dSAndroid Build Coastguard Worker
100*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/task"
101*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content" />
102*90c8c64dSAndroid Build Coastguard Worker
103*90c8c64dSAndroid Build Coastguard Worker        <TextView style="@style/SummaryCategoryLayout"
104*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content"
105*90c8c64dSAndroid Build Coastguard Worker            android:textStyle="bold" android:text="@string/package_summary_version_label" />
106*90c8c64dSAndroid Build Coastguard Worker
107*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/version"
108*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content" />
109*90c8c64dSAndroid Build Coastguard Worker
110*90c8c64dSAndroid Build Coastguard Worker        <TextView style="@style/SummaryCategoryLayout"
111*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content"
112*90c8c64dSAndroid Build Coastguard Worker            android:textStyle="bold" android:text="@string/package_summary_source_label" />
113*90c8c64dSAndroid Build Coastguard Worker
114*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/source"
115*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content" />
116*90c8c64dSAndroid Build Coastguard Worker
117*90c8c64dSAndroid Build Coastguard Worker        <TextView style="@style/SummaryCategoryLayout"
118*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content"
119*90c8c64dSAndroid Build Coastguard Worker            android:textStyle="bold" android:text="@string/package_summary_data_label" />
120*90c8c64dSAndroid Build Coastguard Worker
121*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/data"
122*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent" android:layout_height="wrap_content" />
123*90c8c64dSAndroid Build Coastguard Worker
124*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout android:id="@+id/activities" style="@style/SummaryCategoryLayout">
125*90c8c64dSAndroid Build Coastguard Worker            <TextView style="@style/SummaryCategoryHeader"
126*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/package_summary_activities_label" />
127*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
128*90c8c64dSAndroid Build Coastguard Worker
129*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout android:id="@+id/receivers" style="@style/SummaryCategoryLayout">
130*90c8c64dSAndroid Build Coastguard Worker            <TextView style="@style/SummaryCategoryHeader"
131*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/package_summary_receivers_label" />
132*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
133*90c8c64dSAndroid Build Coastguard Worker
134*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout android:id="@+id/services" style="@style/SummaryCategoryLayout">
135*90c8c64dSAndroid Build Coastguard Worker            <TextView style="@style/SummaryCategoryHeader"
136*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/package_summary_services_label" />
137*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
138*90c8c64dSAndroid Build Coastguard Worker
139*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout android:id="@+id/providers" style="@style/SummaryCategoryLayout">
140*90c8c64dSAndroid Build Coastguard Worker            <TextView style="@style/SummaryCategoryHeader"
141*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/package_summary_providers_label" />
142*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
143*90c8c64dSAndroid Build Coastguard Worker
144*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout android:id="@+id/instrumentation" style="@style/SummaryCategoryLayout">
145*90c8c64dSAndroid Build Coastguard Worker            <TextView style="@style/SummaryCategoryHeader"
146*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/package_summary_instrumentation_label" />
147*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
148*90c8c64dSAndroid Build Coastguard Worker
149*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
150*90c8c64dSAndroid Build Coastguard Worker</ScrollView>
151*90c8c64dSAndroid Build Coastguard Worker
152