OSDN Git Service

Reduce padding to the left of progress category to match framework changes.
[android-x86/packages-apps-Settings.git] / res / layout / ownerinfo.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2010 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17     android:orientation="vertical"
18     android:paddingLeft="6dip"
19     android:paddingRight="6dip"
20     android:layout_width="match_parent" android:layout_height="wrap_content"
21     android:scrollbars="vertical" >
22
23     <ScrollView
24         android:layout_width="match_parent"
25         android:layout_height="match_parent"
26         android:fillViewport="true">
27
28         <LinearLayout
29             android:layout_width="match_parent"
30             android:layout_height="wrap_content"
31             android:orientation="vertical">
32
33             <View
34                 android:paddingTop="53dip"
35                 android:layout_width="match_parent"
36                 android:layout_height="1dip"
37                 android:background="#ff404040"
38                 />
39
40             <CheckBox android:id="@+id/show_owner_info_on_lockscreen_checkbox"
41                 android:layout_width="match_parent"
42                 android:layout_height="64dip"
43                 android:gravity="center_vertical"
44                 android:text="@string/show_owner_info_on_lockscreen_label"
45                 android:textAppearance="?android:attr/textAppearanceMedium"
46                 android:textColor="?android:attr/textColorSecondary"
47             />
48
49             <View
50                 android:layout_width="match_parent"
51                 android:layout_height="1dip"
52                 android:background="#ff404040"
53                 />
54
55             <EditText android:id="@+id/owner_info_edit_text"
56                 android:layout_width="480dip"
57                 android:layout_height="wrap_content"
58                 android:layout_marginLeft="62dip"
59                 android:layout_marginTop="40dip"
60                 android:gravity="top"
61                 android:hint="@string/owner_info_settings_edit_text_hint"
62                 android:lines="8"
63                 android:maxLines="8"
64             />
65
66         </LinearLayout>
67
68     </ScrollView>
69
70 </LinearLayout>
71