Ripple Android effect on list items
Is there a way to add ripple effect to list items in android support library since ripple tag only works with API level 21+.
+3
user3773337
source
to share
1 answer
Not. You cannot add ripple effect to ListView items using the Android Support Library as the Support Library only supports Lollipop features like FAB, SnackBar, AppBarLayout, FloatingEditText, CoordinatorLayout, CollapsingToolbarLayout, TabLayout, NavigationView
. If you need to create custom ripple effect for listitem in ListView follow this tutorial . It has a very nice sample creating a RippleEffect extending a RelativeLayout so that you can designate this view as the parent layout in the list.
+2
Chandru
source
to share