project_files/Android-build/SDL-android-project/res/drawable-mdpi/dropdown.xml
author Wuzzy <almikes@aol.com>
Thu, 05 Oct 2017 17:39:04 +0200
changeset 12653 1215fd246e08
parent 7568 75ba91f14ed5
permissions -rw-r--r--
Climb Home: Fix game getting stuck when player reaches home What now happens if a player reaches home: - sndWinning - Show caption with finishing time - Winning hog is teleported to roof and can be seen by everyone - 4 second delay - If there are still hogs left, the game continues normally - Each victory is mentioned in stats screen at the end
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7568
75ba91f14ed5 Hedgeroid:
Medo <smaxein@googlemail.com>
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
75ba91f14ed5 Hedgeroid:
Medo <smaxein@googlemail.com>
parents:
diff changeset
     2
<selector xmlns:android="http://schemas.android.com/apk/res/android">
75ba91f14ed5 Hedgeroid:
Medo <smaxein@googlemail.com>
parents:
diff changeset
     3
    <item android:state_focused="true" android:state_enabled="true" android:drawable="@drawable/dropdown_focused" />
75ba91f14ed5 Hedgeroid:
Medo <smaxein@googlemail.com>
parents:
diff changeset
     4
    <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/dropdown_focused_disabled" />
75ba91f14ed5 Hedgeroid:
Medo <smaxein@googlemail.com>
parents:
diff changeset
     5
    <item android:state_focused="false" android:state_enabled="true" android:drawable="@drawable/dropdown_normal" />
75ba91f14ed5 Hedgeroid:
Medo <smaxein@googlemail.com>
parents:
diff changeset
     6
    <item android:state_focused="false" android:state_enabled="false" android:drawable="@drawable/dropdown_disabled" />
75ba91f14ed5 Hedgeroid:
Medo <smaxein@googlemail.com>
parents:
diff changeset
     7
</selector>