OLD | NEW |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. |
4 | 4 |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 | 8 |
9 <resources> | 9 <resources> |
10 <style name="DropdownPopupWindow" parent="@android:style/Widget.ListPopupWin dow"> | 10 <style name="DropdownPopupWindow" parent="@android:style/Widget.ListPopupWin dow"> |
11 <item name="android:popupBackground">@drawable/dropdown_popup_background </item> | 11 <item name="android:popupBackground">@drawable/dropdown_popup_background </item> |
12 </style> | 12 </style> |
13 | |
14 <!-- Buttons --> | |
15 <style name="ButtonCompatOverlay"> | |
16 <item name="android:buttonStyle">@style/ButtonCompat</item> | |
17 </style> | |
18 <style name="ButtonCompatBorderlessOverlay"> | |
19 <item name="android:buttonStyle">@style/ButtonCompatBorderless</item> | |
20 </style> | |
21 <style name="ButtonCompatBase"> | |
22 <item name="android:minWidth">88dp</item> | |
23 <item name="android:minHeight">36dp</item> | |
24 <item name="android:textSize">14sp</item> | |
25 <item name="android:paddingStart">20dp</item> | |
26 <item name="android:paddingEnd">20dp</item> | |
27 <item name="android:paddingTop">5dp</item> | |
28 <item name="android:paddingBottom">5dp</item> | |
29 <item name="android:textAllCaps">true</item> | |
30 <item name="android:focusable">true</item> | |
31 <item name="android:clickable">true</item> | |
32 <item name="android:gravity">center_vertical|center_horizontal</item> | |
33 </style> | |
34 <style name="ButtonCompat" parent="ButtonCompatBase"> | |
35 <item name="android:background">@drawable/button_compat_shape</item> | |
36 <item name="android:textStyle">bold</item> | |
37 </style> | |
38 <style name="ButtonCompatBorderless" parent="ButtonCompat"> | |
39 <item name="android:background">?attr/android:selectableItemBackground</ item> | |
newt (away)
2015/07/14 01:39:59
android:attr
| |
40 </style> | |
13 </resources> | 41 </resources> |
OLD | NEW |