Android/Android 일반
RecyclerView 클릭 시 Ripple넣기
lipnus
2019. 3. 27. 15:22
반응형
item_XXX_layout.xml
같이 각 칸의 레이아웃 xml파일의 가장 root에
android:background="?android:attr/selectableItemBackground"
을 넣어준다.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?android:attr/selectableItemBackground"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="wrap_content">
이런식으로..
반응형