Created
May 28, 2017 21:32
-
-
Save yccheok/44edbfd20a26b433d0d08146c6fd97ec to your computer and use it in GitHub Desktop.
Better ripple effect for auto complete text view dropdown
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ripple xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:color="?attr/colorControlHighlight"> | |
| <item android:id="@android:id/mask"> | |
| <color android:color="#ffffff"/> <!-- any color will do --> | |
| </item> | |
| <item> | |
| <selector android:exitFadeDuration="@android:integer/config_mediumAnimTime"> | |
| <item android:state_pressed="true"> | |
| <color android:color="#10ffffff"/> | |
| </item> | |
| </selector> | |
| </item> | |
| </ripple> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment