반응형
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">
이런식으로..
반응형
'Android > Android 일반' 카테고리의 다른 글
xml 국가별 strings.xml 사용 (0) | 2019.03.28 |
---|---|
뷰(View)가 그려지는 과정 (0) | 2019.03.27 |
Handler 구현 (0) | 2019.03.26 |
스레드 구현방법 (Thread클래스 상속, Runnable인터페이스 구현) (0) | 2019.03.26 |
핸들러(Handler), 루퍼(Looper), 메시지큐(Message Queue) (0) | 2019.03.26 |