I want to use Font Awesome Icons in BottomNavigationView
's icons. Also I want to change its color in the Selector
. I tried many solutions but I didn't find any materials about that .
Here is my 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"
/>
Implementation in MainActivity
private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener = new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
return false;
}
};