hanya perrlu ditambahkan di koding xml nya saja :
CardView
Untuk memunculkan Ripple Effects pada CardView cukup tambahkan atribut berikut :
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
TextView
Pada TextView, tambahkan atribut berikut :
android:background="?attr/selectableItemBackground"
android:clickable="true"
Button
Pada Button/Tombol, cukup tambahkan kode berikut :
Untuk style normal
style="@style/Widget.AppCompat.Button"
Untuk style colored
style="@style/Widget.AppCompat.Button.Colored"
0 Comments