带徽章的BottomAppBar导航图标

时间:2018-12-10 22:50:43

标签: android android-studio android-bottomappbar

我正在应用程序中使用新的BottomAppBar。 但是我无法使徽章正常工作。 我尝试使用与BottomNavigationView相同的逻辑,但不起作用。 / p>

   MenuView.ItemView itemView = (MenuView.ItemView) bottomAppBar.getChildAt(posicao);

    notificationBadge = LayoutInflater.from(this).inflate(R.layout.view_notification_badge, (ViewGroup) itemView, false);
    TextView notific = notificationBadge.findViewById(R.id.badge);
    notific.setText(notificacao);

    itemView.addView(notificationBadge);

我想做什么: enter image description here

我尝试了BadgeNavigationDrawable类。但是在BottomAppBar中找不到对导航图标的正确引用。

谢谢。

1 个答案:

答案 0 :(得分:1)

您可以尝试这样: 在xml中,设置“ app:navigationIcon”(底部AppBar的左侧图标):

   <android.support.design.bottomappbar.BottomAppBar
    android:id="@+id/bottom_appbar"
    android:layout_width="match_parent"
    android:layout_height="44dp"
    android:layout_gravity="bottom"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:fabAttached="true"
    app:backgroundTint="@color/colorPrimary"
    app:navigationIcon="@android:drawable/ic_dialog_email" 
    app:fabCradleVerticalOffset="12dp"/>

然后参加活动:

  BottomAppBar bottomAppBar = (BottomAppBar) findViewById(R.id.bottom_appbar);
  bottomAppBar.setNavigationOnClickListener(this);

   @Override
   public void onClick(View v) {
    //do something
}