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