It is CardView connect the animation of clicking on CardView , when the code is shown below, the animation is present, but the action does not occur, if you remove the android:clickable="true" action works, and the animation disappears.
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/themeCardView" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/cardview_my_layout_margin" android:foreground="?android:attr/selectableItemBackground"> <TextView android:id="@+id/themeTextView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="10dp" android:layout_marginLeft="10dp" android:layout_marginTop="10dp" android:textColor="?attr/editTextColor" android:textSize="18sp"/> at the moment the situation is this: there is animation on API16, there is no animation on API23.