Created
February 5, 2017 18:05
-
-
Save aashreys/017bba7d6211319998e2c8cffe528065 to your computer and use it in GitHub Desktop.
Unbounded ripples which gracefully fallback to the default selector in pre-lollipop devices.
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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<attr name="selectableItemBackgroundBorderlessCompat" /> | |
</resources> |
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
<resources> | |
<!-- Base application theme. --> | |
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> | |
<!-- Add your theme attributes here. --> | |
<item name="selectableItemBackgroundBorderlessCompat">?attr/selectableItemBackgroundBorderless</item> | |
</style> | |
</resources> |
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
<resources> | |
<!-- Base application theme. --> | |
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> | |
<!-- Add your theme attributes here. --> | |
<item name="selectableItemBackgroundBorderlessCompat">?attr/selectableItemBackground</item> | |
</style> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment