• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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    <LinearLayout
22        android:id="@+id/all_details"
23        android:layout_width="match_parent"
24        android:layout_height="match_parent"
25        android:paddingTop="5dip"
26        android:paddingBottom="5dip"
27        android:orientation="vertical">
28
29        <include layout="@layout/app_percentage_item" />
30
31        <!-- Force stop and report buttons -->
32        <LinearLayout
33            android:id="@+id/two_buttons_panel"
34            android:layout_width="match_parent"
35            android:layout_height="wrap_content"
36            android:paddingBottom="6dip"
37            android:orientation="vertical">
38            <include
39                layout="@layout/two_buttons_panel"/>
40        </LinearLayout>
41
42        <TextView
43            style="?android:attr/listSeparatorTextViewStyle"
44            android:text="@string/details_subtitle" />
45
46        <LinearLayout
47            android:id="@+id/details"
48            android:layout_width="match_parent"
49            android:layout_height="wrap_content"
50            android:paddingLeft="6dip"
51            android:orientation="vertical">
52
53            <!-- Insert detail items here -->
54
55        </LinearLayout>
56
57        <LinearLayout
58            android:id="@+id/controls"
59            android:layout_width="match_parent"
60            android:layout_height="wrap_content"
61            android:orientation="vertical">
62
63            <TextView
64                android:id="@+id/controls_title"
65                style="?android:attr/listSeparatorTextViewStyle"
66                android:layout_marginTop="6dip"
67                android:text="@string/controls_subtitle" />
68
69            <!-- Controls go here ... -->
70
71        </LinearLayout>
72
73        <TextView
74            android:id="@+id/packages_section_title"
75            style="?android:attr/listSeparatorTextViewStyle"
76            android:layout_marginTop="6dip"
77            android:text="@string/packages_subtitle" />
78
79        <LinearLayout
80            android:id="@+id/packages_section"
81            android:layout_width="match_parent"
82            android:layout_height="wrap_content"
83            android:paddingLeft="6dip"
84            android:orientation="vertical">
85
86            <!-- Insert detail items here -->
87
88        </LinearLayout>
89    </LinearLayout>
90</ScrollView>
91