gpt4 book ai didi

android - 带徽章的 BottomAppBar 导航图标

转载 作者:行者123 更新时间:2023-11-29 23:25:13 24 4
gpt4 key购买 nike

我在应用程序中使用新的 BottomAppBar。但我无法让徽章发挥作用。我尝试使用 BottomNavigationView 上使用的相同逻辑,但它不起作用。(在另一个应用程序中,我在 BottomAppBar 中有一个 BottomNavigationView,其中徽章有效,但不能在 BottomAppBar 应用程序(导航图标)中使用相同的代码。

   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 中找到对导航图标的正确引用。

谢谢。

最佳答案

你可以这样试试:在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"/>

然后在 Activity 中:

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

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

关于android - 带徽章的 BottomAppBar 导航图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53714888/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com