mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
Vector drawables do *not* belong in dpi-specific subfolders. They should always be placed in the general "res/drawable" folder. This can actually cause crashes on certain devices.
11 lines
No EOL
398 B
XML
11 lines
No EOL
398 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:state_pressed="true"
|
|
android:drawable="@color/pressed_button_light" />
|
|
<item
|
|
android:state_focused="true"
|
|
android:drawable="@color/focused_button_light"
|
|
/>
|
|
<item android:drawable="@android:color/transparent" />
|
|
</selector> |