Notice
Recent Posts
Recent Comments
Link
ยซ   2025/04   ยป
์ผ ์›” ํ™” ์ˆ˜ ๋ชฉ ๊ธˆ ํ† 
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
Tags
more
Archives
Today
Total
๊ด€๋ฆฌ ๋ฉ”๋‰ด

๐ŸŒฑ dreaming DiNO

[Android] BottomNavigation ์•„์ด์ฝ˜ ์ƒ‰์ƒ ๋ฐ”๊พธ๊ธฐ ๋ณธ๋ฌธ

Android

[Android] BottomNavigation ์•„์ด์ฝ˜ ์ƒ‰์ƒ ๋ฐ”๊พธ๊ธฐ

MK_____ 2023. 7. 11. 10:00

1. color -> bottom_navigation_item_selector.xml ๋งŒ๋“ค๊ธฐ

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="#000000" android:state_checked="true" />
    <item android:color="#CCCCCC" android:state_checked="false" />
</selector>

 

2. itemTextColor, itemIconTint ์ ์šฉ

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/bottom_nav"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:menu="@menu/bottom_nav_menu"
    app:labelVisibilityMode="labeled"
    app:itemTextColor="@color/bottom_navigation_item_selector"
    app:itemIconTint="@color/bottom_navigation_item_selector"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintTop_toBottomOf="@id/nav_host"/>