| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
| 5 | 5 |
| 6 <resources xmlns:tools="http://schemas.android.com/tools"> | 6 <resources xmlns:tools="http://schemas.android.com/tools"> |
| 7 <!-- Q: Why put style resources under values-v17/ ? | 7 <!-- Q: Why put style resources under values-v17/ ? |
| 8 A: Problem: | 8 A: Problem: |
| 9 1. paddingStart causes a crash on Galaxy Tab&Note b/8351339. | 9 1. paddingStart causes a crash on Galaxy Tab&Note b/8351339. |
| 10 2. So we wrote a build script(generate_v14_compatible_resources.py)
to convert | 10 2. So we wrote a build script(generate_v14_compatible_resources.py)
to convert |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 <item name="android:singleLine">true</item> | 667 <item name="android:singleLine">true</item> |
| 668 </style> | 668 </style> |
| 669 <style name="DownloadIconView"> | 669 <style name="DownloadIconView"> |
| 670 <item name="android:layout_width">@dimen/downloads_item_icon_size</item> | 670 <item name="android:layout_width">@dimen/downloads_item_icon_size</item> |
| 671 <item name="android:layout_height">@dimen/downloads_item_icon_size</item
> | 671 <item name="android:layout_height">@dimen/downloads_item_icon_size</item
> |
| 672 <item name="android:layout_marginEnd">16dp</item> | 672 <item name="android:layout_marginEnd">16dp</item> |
| 673 <item name="android:contentDescription">@null</item> | 673 <item name="android:contentDescription">@null</item> |
| 674 <item name="android:scaleType">center</item> | 674 <item name="android:scaleType">center</item> |
| 675 <item name="android:background">@color/light_active_color</item> | 675 <item name="android:background">@color/light_active_color</item> |
| 676 </style> | 676 </style> |
| 677 |
| 678 <!-- Miscellaneous --> |
| 679 <style name="BottomSheetContentTitle" parent="TextAppearance.Widget.AppCompa
t.Toolbar.Title"> |
| 680 <item name="android:textSize">20sp</item> |
| 681 </style> |
| 677 </resources> | 682 </resources> |
| OLD | NEW |