홈부분에 동그랗게 보이는 부분을 ripple효과라고하는데 저 부분이 별로 예쁘지 않아서 없애줄려고한다
bottomnavigation 부분에 itemBackground를 적용해주면 된다
이 한줄만 추가해주면 끝이다!
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bn_"
android:layout_width="match_parent"
android:layout_height="70dp"
android:background="#F2F2F2"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:menu="@menu/menu"
app:itemBackground="@color/gray"
app:itemIconTint="@drawable/bottom_navigation_color" />
'Android > Android 핵심기술' 카테고리의 다른 글
[Android/Kotlin] Custom Dialog 구현 (1) | 2024.02.21 |
---|---|
[Android/Kotlin] RecyclerView 클릭 이벤트 처리 (0) | 2024.02.21 |
[Android/Kotlin] font 적용하기 (0) | 2024.02.14 |
[Android] 리스트뷰 vs 리사이클러뷰 (0) | 2024.01.30 |
[Android/Kotlin] View Binding (0) | 2023.12.06 |