1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* //device/apps/Preferences/assets/res/any/styles.xml 4** 5** Copyright 2006, 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<resources> 21 22 <style name="info_label"> 23 <item name="android:layout_height">wrap_content</item> 24 <item name="android:layout_width">wrap_content</item> 25 <item name="android:textAppearance">@style/TextAppearance.info_label</item> 26 <item name="android:paddingRight">4dip</item> 27 </style> 28 29 <style name="info_value"> 30 <item name="android:layout_height">wrap_content</item> 31 <item name="android:layout_width">wrap_content</item> 32 <item name="android:textAppearance">@style/TextAppearance.info_value</item> 33 </style> 34 35 <style name="info_small"> 36 <item name="android:layout_height">wrap_content</item> 37 <item name="android:layout_width">wrap_content</item> 38 <item name="android:textAppearance">@style/TextAppearance.info_small</item> 39 </style> 40 41 <style name="info_layout"> 42 <item name="android:orientation">vertical</item> 43 <item name="android:paddingLeft">10dip</item> 44 <item name="android:paddingTop">10dip</item> 45 <item name="android:paddingRight">10dip</item> 46 <item name="android:paddingBottom">10dip</item> 47 <item name="android:layout_width">fill_parent</item> 48 <item name="android:layout_height">fill_parent</item> 49 </style> 50 51 <style name="entry_layout"> 52 <item name="android:orientation">horizontal</item> 53 <item name="android:layout_width">wrap_content</item> 54 <item name="android:layout_height">wrap_content</item> 55 </style> 56 57 <style name="form_value"> 58 <item name="android:layout_height">wrap_content</item> 59 <item name="android:layout_width">fill_parent</item> 60 </style> 61 62 63 <style name="TextAppearance" parent="android:TextAppearance"> 64 </style> 65 66 <style name="TextAppearance.info_label"> 67 <item name="android:textSize">14sp</item> 68 <item name="android:textStyle">bold</item> 69 </style> 70 71 <style name="TextAppearance.info_small"> 72 <item name="android:textSize">12sp</item> 73 <item name="android:textStyle">normal</item> 74 </style> 75 76 <style name="TextAppearance.info_value"> 77 <item name="android:textSize">14sp</item> 78 <item name="android:textStyle">normal</item> 79 </style> 80 81</resources> 82