我正在用活动实现底部导航栏。我创建了一个选择器,当点击它时,它会改变图标的颜色。但是当我按下后退按钮时,它会转到上一个活动,但图标的颜色不会改变。
这是我的选择器
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_checked="true"
android:color="@color/colorPrimary"/>
<item
android:state_checked="false"
android:color="@color/grey"/>
</selector>
使用底部导航的活动之一。所有的活动都有底部导航栏
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ChatActivity">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:itemIconTint="@drawable/selector"
app:itemTextColor="@drawable/selector"
app:labelVisibilityMode="labeled"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:menu="@menu/menu_b_navigation" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="243dp"
android:layout_marginEnd="149dp"
android:text="Chat activity"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
在使用底部导航栏的每个活动中执行此操作。
bottom_navigation.selectedItemId = R.id.home
bottom_navigation.setOnNavigationItemSelectedListener {
when (it.itemId){
R.id.home ->{
true
}
R.id.sell-> {
val intent = Intent(this, SellActivity::class.java)
startActivity(intent)
overridePendingTransition(0,0)
true
}
R.id.chat -> {
val intent = Intent(this, ChatActivity::class.java)
startActivity(intent)
overridePendingTransition(0,0)
true
}
R.id.profile -> {
val intent = Intent(this, ProfileActivity::class.java)
startActivity(intent)
overridePendingTransition(0,0)
true
}
else -> {
false
}
}
}
1条答案
按热度按时间axkjgtzd1#
在下面的代码中添加您的选择器,并尝试是否可以工作: