app dashboard cardview click effect and animation android studio

Solutions on MaxInterview for app dashboard cardview click effect and animation android studio by the best coders in the world

showing results for - "app dashboard cardview click effect and animation android studio"
Neele
10 Jan 2021
1<android.support.v7.widget.CardView
2    xmlns:card_view="http://schemas.android.com/apk/res-auto"
3    android:layout_width="155dp"
4    android:layout_height="230dp"
5    android:elevation="4dp"
6    android:translationZ="5dp"
7    android:clickable="true"
8    android:focusable="true"
9    android:focusableInTouchMode="true"
10    android:onClick="showNotices"
11    android:background="?android:attr/selectableItemBackground"
12    android:id="@+id/notices_card"
13    card_view:cardCornerRadius="2dp">
14
15</android.support.v7.widget.CardView> 
Daphné
14 Jan 2019
1android:foreground="?android:attr/selectableItemBackground"
Joe
04 Feb 2020
1android:clickable="true"
similar questions