BottomNavigationView不会突出显示自定义图标

时间:2018-05-02 19:25:47

标签: android bottomnavigationview android-navigation

我想实现一个BottomNavigationView并添加了一个material.io的图标作为我的drawables的png。当我将其插入:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">

<item
    android:id="@+id/navigation_home"
    android:icon="@drawable/ic_home_black_24dp"
    android:title="@string/title_home" />

<item
    android:id="@+id/navigation_dashboard"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:icon="@drawable/ic_dashboard_black_24dp"
    android:title="@string/title_dashboard" />

<item
    android:id="@+id/navigation_notifications"
    android:icon="@drawable/ic_notifications_black_24dp"
    android:title="@string/title_notifications" />

<!-- This is my item added to the normal template -->
<item
    android:id="@+id/navigation_more"
    android:icon="@drawable/ic_more_horiz_black_24dp"
    android:title="@string/title_more" />

</menu>

并在主要活动中使用它,它会显示,但是当在模拟器上按下时项目不会突出显示,而其他项目(通过突出显示,我的意思是它会略微爆炸并变为原色,显示下面的一些文字)。我尝试了矢量和.pngs,没有什么可行的。我向后兼容Android 5.0(目标版本27)。

主页活动目前看起来像:

public class HomeActivity extends AppCompatActivity {

  private TextView mTextMessage;

  private BottomNavigationView.OnNavigationItemSelectedListener 
  mOnNavigationItemSelectedListener
        = new BottomNavigationView.OnNavigationItemSelectedListener() {

  @Override
  public boolean onNavigationItemSelected(@NonNull MenuItem item) {
      switch (item.getItemId()) {
          case R.id.navigation_home:
              mTextMessage.setText(R.string.title_home);
              return true;
          case R.id.navigation_dashboard:
              mTextMessage.setText(R.string.title_dashboard);
              return true;
          case R.id.navigation_notifications:
              mTextMessage.setText(R.string.title_notifications);
              return true;
          case R.id.navigation_more:
              mTextMessage.setText(R.string.title_more);
      }
      return false;
    }
  };

  @Override
  protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_home);

      mTextMessage = (TextView) findViewById(R.id.message);
      BottomNavigationView navigation = (BottomNavigationView) findViewById(R.id.navigation);
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
}

}

文本视图设置正确,图标不会突出显示。

1 个答案:

答案 0 :(得分:1)

你的导航方法总是返回false,当交换机处理一个案例时,尝试返回true;)

例如:

public boolean onNavigationItemSelected(@NonNull MenuItem item) {
    switch (item.getItemId()) {
        case R.id.navigation_home:
            mTextMessage.setText(R.string.title_home);
            return true;
        case R.id.navigation_dashboard:
            mTextMessage.setText(R.string.title_dashboard);
            return true;
        case R.id.navigation_notifications:
            mTextMessage.setText(R.string.title_notifications);
            return true;
        case R.id.navigation_more:
            mTextMessage.setText(R.string.title_more);
            return true; // this was my mistake...
        default: 
            return false;
    } 
    return false;
}