选择项目后不会显示项目图标
item icon won't display after choosing the item
我正在使用 this 库来制作相同的底部导航但是当我点击项目时图标会消失,这是我的代码
activity_main:
<com.github.kwasow.bottomnavigationcircles.BottomNavigationCircles
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:forceDarkAllowed="true"
app:labelVisibilityMode="selected"
app:menu="@menu/navigation" />
导航项目:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/destination_ejournal"
android:icon="@drawable/ejournal_selector"
android:title="@string/bottomnav_ejournal" />
<item
android:id="@+id/destination_solah"
android:icon="@drawable/solah_selector"
android:title="@string/bottomnav_solah" />
<item
android:id="@+id/destination_home"
android:icon="@drawable/home_selector"
android:title="@string/bottomnav_home" />
<item
android:id="@+id/destination_dua"
android:icon="@drawable/dua_selector"
android:title="@string/bottomnav_dua" />
<item
android:id="@+id/menu_more"
android:icon="@drawable/more_selector"
android:title="@string/bottomnav_more" />
主要活动:
val bottomNavigation = findViewById<BottomNavigationCircles>(R.id.navigation)
bottomNavigation.color = Color.WHITE
所以我做错了什么?
是在activity还是XML?
问题图片:
If i click Home
If i navigate to another
If i change color from white to red
家庭选择器:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/home_selected" android:state_checked="true" />
<item android:drawable="@drawable/ic_home" android:state_checked="false" />
</selector>
ic_home: 是verctor
home_selected: 是png
解决方案:
如果“state_checked”并且其中一个是 PNG 格式所以它没有出现,我使用选择器来显示不同的可绘制对象,我使用了 2 个向量作为选择器现在工作正常
我用那个库试过你的例子,问题是你在运行时将颜色设置为白色,并且那种混合到 bottomnav 颜色中。
您可以尝试不同的颜色,例如红色。
val bottomNavigation = findViewById<BottomNavigationCircles>(R.id.navigation)
bottomNavigation.color = Color.RED
它给了我以下结果:
我正在使用 this 库来制作相同的底部导航但是当我点击项目时图标会消失,这是我的代码
activity_main:
<com.github.kwasow.bottomnavigationcircles.BottomNavigationCircles
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:forceDarkAllowed="true"
app:labelVisibilityMode="selected"
app:menu="@menu/navigation" />
导航项目:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/destination_ejournal"
android:icon="@drawable/ejournal_selector"
android:title="@string/bottomnav_ejournal" />
<item
android:id="@+id/destination_solah"
android:icon="@drawable/solah_selector"
android:title="@string/bottomnav_solah" />
<item
android:id="@+id/destination_home"
android:icon="@drawable/home_selector"
android:title="@string/bottomnav_home" />
<item
android:id="@+id/destination_dua"
android:icon="@drawable/dua_selector"
android:title="@string/bottomnav_dua" />
<item
android:id="@+id/menu_more"
android:icon="@drawable/more_selector"
android:title="@string/bottomnav_more" />
主要活动:
val bottomNavigation = findViewById<BottomNavigationCircles>(R.id.navigation)
bottomNavigation.color = Color.WHITE
所以我做错了什么?
是在activity还是XML?
问题图片:
If i click Home
If i navigate to another
If i change color from white to red
家庭选择器:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/home_selected" android:state_checked="true" />
<item android:drawable="@drawable/ic_home" android:state_checked="false" />
</selector>
ic_home: 是verctor home_selected: 是png
解决方案:
如果“state_checked”并且其中一个是 PNG 格式所以它没有出现,我使用选择器来显示不同的可绘制对象,我使用了 2 个向量作为选择器现在工作正常
我用那个库试过你的例子,问题是你在运行时将颜色设置为白色,并且那种混合到 bottomnav 颜色中。
您可以尝试不同的颜色,例如红色。
val bottomNavigation = findViewById<BottomNavigationCircles>(R.id.navigation)
bottomNavigation.color = Color.RED
它给了我以下结果: