gpt4 book ai didi

android - 在底部导航栏图标的顶部显示徽章

转载 作者:IT王子 更新时间:2023-10-28 23:40:04 29 4
gpt4 key购买 nike

我已经在我的应用程序中实现了底部导航 View ,并且我已经查看了在 this 等图标顶部显示徽章的所有位置我想知道这是否甚至可以实现。任何帮助表示赞赏。谢谢。

最佳答案

如果您只想使用股票 BottomNavigationView 而没有第三方库,我就是这样做的:

BottomNavigationMenuView bottomNavigationMenuView =
(BottomNavigationMenuView) navigationView.getChildAt(0);
View v = bottomNavigationMenuView.getChildAt(3);
BottomNavigationItemView itemView = (BottomNavigationItemView) v;

View badge = LayoutInflater.from(this)
.inflate(R.layout.notification_badge, itemView, true);

然后是布局文件:

<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">

<TextView
android:id="@+id/notifications.badge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|center_horizontal"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:background="@drawable/notification_badge"
android:gravity="center"
android:padding="3dp"
android:text="9+"
android:textColor="@color/white"
android:textSize="11sp" />
</merge>

然后只需通过 id 找到 TextView 并设置文本。@drawable/notification_badge 只是一个可绘制的圆形

关于android - 在底部导航栏图标的顶部显示徽章,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42682855/

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