Skip to content

Instantly share code, notes, and snippets.

@yccheok
Created May 28, 2017 21:32
Show Gist options
  • Select an option

  • Save yccheok/44edbfd20a26b433d0d08146c6fd97ec to your computer and use it in GitHub Desktop.

Select an option

Save yccheok/44edbfd20a26b433d0d08146c6fd97ec to your computer and use it in GitHub Desktop.
Better ripple effect for auto complete text view dropdown
<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