| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 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 | |
| 4 found in the LICENSE file. --> | |
| 5 | |
| 6 <!-- TODO(twellington): Remove this file once AppCompat provides Material-esque
buttons --> | |
| 7 <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
| 8 <item android:state_pressed="true" | |
| 9 android:drawable="@drawable/btn_default_preferences_pressed" /> | |
| 10 <item android:state_selected="true" | |
| 11 android:drawable="@drawable/btn_default_preferences_pressed" /> | |
| 12 <item android:state_focused="true" | |
| 13 android:drawable="@drawable/btn_default_preferences_pressed" /> | |
| 14 <item android:state_enabled="false" | |
| 15 android:drawable="@drawable/btn_default_preferences_disabled" /> | |
| 16 <item android:state_enabled="true" | |
| 17 android:drawable="@drawable/btn_default_preferences_enabled" /> | |
| 18 <item android:drawable="@drawable/btn_default_preferences_enabled" /> | |
| 19 </selector> | |
| OLD | NEW |