Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 안드로이드 스튜디오
- Kotlin
- 팝업액티비티
- 밑줄
- textview
- 코틀린
- 안드로이드스튜디오
- Dialog
- lifecyclescope
- androidstudio
- ButtonWithButton
- 안드로이드
- OutlinedButton
- firebase
- button
- MaterialButton
- EditText
- nav_graph
- RealtimeDB
- firebasefunctions
- FRAGMENT
- ArrayList
- Activity
- 뷰바인딩
- Android
- 랜덤ID
- Imageview
- ViewModel
- ROOM
- BottomSheetDialog
Archives
- Today
- Total
안드로이드 앱 개발
Ripple effect가 안 먹을 때? 본문
가끔 fragment에 listview나 gridview를 넣었을 때
클릭 효과(ripple effect)가 안 먹을 때가 있었다.
그럴 때
single_row나
single_cell의 xml에 속성을 추가해주면 된다.
android:foreground="?android:attr/selectableItemBackground"
이러면 기본 ripple 효과가 먹음
If, 색깔을 커스터마이징 해주고싶다면
drawable에 ripple.xml을 생성한다음 추가해주면 된다.
<ripple android:color="#ffff0000">
<item android:id="@android:id/mask"
android:drawable="@android:color/white" />
</ripple>
앱 전체의 ripple 색을 지정할 수도 있음
styles.xml에서 전체 앱 theme에 속성추가
<item name="colorControlHighlight">#dfdfdf</item>
'안드로이드앱 > ListView_리스트뷰' 카테고리의 다른 글
Ripple effect, 리플효과가 안 먹을 때_2 (0) | 2021.03.16 |
---|