|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
|
3 - License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
|
5 |
|
6 <resources xmlns:android="http://schemas.android.com/apk/res/android"> |
|
7 <!-- Top title bar: a text view with the Sync icon to the left. --> |
|
8 <style name="SyncTop" parent="@android:style/Widget.Holo.ActionBar"> |
|
9 <item name="android:textAppearance">@android:style/TextAppearance.Holo.Widget.ActionBar.Title</item> |
|
10 <item name="android:layout_width">fill_parent</item> |
|
11 <item name="android:layout_height">wrap_content</item> |
|
12 <item name="android:gravity">center_vertical|left</item> |
|
13 <item name="android:drawableLeft">@drawable/icon</item> |
|
14 <item name="android:padding">4dp</item> |
|
15 <item name="android:drawablePadding">4dp</item> |
|
16 </style> |
|
17 |
|
18 <!-- Bottom bar: a horizontal linear layout with buttons in it. --> |
|
19 <style name="SyncBottom" parent="@android:style/Holo.Light.ButtonBar"> |
|
20 <item name="android:layout_width">fill_parent</item> |
|
21 <item name="android:layout_height">wrap_content</item> |
|
22 </style> |
|
23 |
|
24 <style name="SyncButton" parent="@android:style/Widget.Holo.Light.Button.Small"> |
|
25 <item name="android:layout_width">fill_parent</item> |
|
26 <item name="android:layout_height">wrap_content</item> |
|
27 <item name="android:layout_weight">1</item> |
|
28 <item name="android:background">?android:attr/selectableItemBackground</item> |
|
29 </style> |
|
30 |
|
31 </resources> |