OSDN Git Service

Merge "Fix NPE in WirelessSettings.onCreate() for SDK and non-BT devices." into honey...
[android-x86/packages-apps-Settings.git] / res / values / styles.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2006 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 <resources>
18
19     <style name="info_label">
20         <item name="android:layout_height">wrap_content</item>
21         <item name="android:layout_width">wrap_content</item>
22         <item name="android:textAppearance">@style/TextAppearance.info_label</item>
23         <item name="android:paddingRight">4dip</item>
24     </style>
25
26     <style name="info_value">
27         <item name="android:layout_height">wrap_content</item>
28         <item name="android:layout_width">wrap_content</item>
29         <item name="android:textAppearance">@style/TextAppearance.info_value</item>
30     </style>
31
32     <style name="info_small">
33         <item name="android:layout_height">wrap_content</item>
34         <item name="android:layout_width">wrap_content</item>
35         <item name="android:textAppearance">@style/TextAppearance.info_small</item>
36     </style>
37
38     <style name="info_layout">
39         <item name="android:orientation">vertical</item>
40         <item name="android:paddingLeft">10dip</item>
41         <item name="android:paddingTop">10dip</item>
42         <item name="android:paddingRight">10dip</item>
43         <item name="android:paddingBottom">10dip</item>
44         <item name="android:layout_width">match_parent</item>
45         <item name="android:layout_height">match_parent</item>
46     </style>
47
48     <style name="entry_layout">
49         <item name="android:orientation">horizontal</item>
50         <item name="android:layout_width">wrap_content</item>
51         <item name="android:layout_height">wrap_content</item>
52     </style>
53
54     <style name="form_value">
55         <item name="android:layout_height">wrap_content</item>
56         <item name="android:layout_width">match_parent</item>
57     </style>
58
59
60     <style name="TextAppearance" parent="android:TextAppearance">
61     </style>
62
63     <style name="TextAppearance.info_label">
64         <item name="android:textSize">14sp</item>
65         <item name="android:textStyle">bold</item>
66     </style>
67
68     <style name="TextAppearance.info_small">
69         <item name="android:textSize">12sp</item>
70         <item name="android:textStyle">normal</item>
71     </style>
72
73     <style name="TextAppearance.info_value">
74         <item name="android:textSize">14sp</item>
75         <item name="android:textStyle">normal</item>
76     </style>
77
78     <style name="TallTitleBarTheme" parent="android:Theme.NoTitleBar">
79         <item name="android:windowContentOverlay">@null</item>
80     </style>
81
82     <style name="Theme.CreateShortCut" parent="android:Theme.Holo.DialogWhenLarge">
83     </style>
84
85     <style name="wifi_item">
86         <item name="android:layout_width">match_parent</item>
87         <item name="android:layout_height">wrap_content</item>
88         <item name="android:layout_marginTop">8dip</item>
89         <item name="android:layout_marginLeft">16dip</item>
90         <item name="android:layout_marginRight">16dip</item>
91         <item name="android:orientation">vertical</item>
92         <item name="android:gravity">left</item>
93     </style>
94
95     <style name="wifi_item_label">
96         <item name="android:layout_width">wrap_content</item>
97         <item name="android:layout_height">wrap_content</item>
98         <item name="android:textSize">14sp</item>
99     </style>
100
101     <style name="wifi_item_content">
102         <item name="android:layout_width">match_parent</item>
103         <item name="android:layout_height">wrap_content</item>
104         <item name="android:textSize">18sp</item>
105     </style>
106
107     <style name="wifi_section">
108         <item name="android:layout_width">match_parent</item>
109         <item name="android:layout_height">wrap_content</item>
110         <item name="android:orientation">vertical</item>
111     </style>
112
113     <style name="setup_wizard_button">
114         <item name="android:layout_width">wrap_content</item>
115         <item name="android:layout_height">wrap_content</item>
116     </style>
117
118     <style name="Transparent">
119         <item name="android:windowBackground">@android:color/transparent</item>
120         <item name="android:windowNoTitle">true</item>
121         <item name="android:windowIsFloating">true</item>
122     </style>
123
124     <style name="CryptKeeperBlankTheme" parent="@android:style/Theme.Holo.NoActionBar">
125         <item name="android:background">#ff000000</item>
126     </style>
127
128     <style name="SecurityPreferenceButtonContainer" parent="@android:style/Holo.SegmentedButton">
129         <item name="android:layout_width">wrap_content</item>
130         <item name="android:layout_height">wrap_content</item>
131         <item name="android:dividerPadding">8dip</item>
132     </style>
133
134     <style name="SecurityPreferenceButton" parent="@android:style/Widget.Holo.Button.Borderless">
135         <item name="android:layout_width">140dip</item>
136         <item name="android:layout_height">wrap_content</item>
137         <item name="android:ellipsize">marquee</item>
138         <item name="android:singleLine">true</item>
139     </style>
140
141 </resources>