【发布时间】:2020-10-07 21:53:37
【问题描述】:
我想在 BottomNavigationView 的图标中使用 Font Awesome Icons。我还想在 Selector 中更改它的颜色。我尝试了很多解决方案,但没有找到任何相关材料。
这是我的BottomNavigationView
<com.google.android.material.bottomnavigation.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:id="@+id/bottomNav"
app:menu="@menu/navigation_menu"
android:background="?android:attr/windowBackground"
/>
在MainActivity中实现
private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener = new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
return false;
}
};
【问题讨论】:
标签: android font-awesome bottomnavigationview