我在我的应用程序中使用Bottomnavigationview标签栏,为此,我正在使用以下代码。请检查一次。
布局:-

<android.support.design.widget.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        app:itemTextColor="@android:color/black"
        app:menu="@menu/bottom_navigation_main" />
并且我从中得到以下结果,请检查它的图像。
java - 如何创建Bottomnavigationview Android的自定义项目?-LMLPHP
但问题是,我需要Bottomnavigationview的自定义项,如下面的图像中所示,TextView的主页项上有红色 Bottomnavigationview计数,请检查下图。
java - 如何创建Bottomnavigationview Android的自定义项目?-LMLPHP
我已经搜索了它,并获得了第三方库,它可以创建我想要的 View 。请检查它的库Click here是否不能不使用任何第三方库而仅使用Bottomnavigationview
我在 SO 上进行了搜索,但没有得到预期的结果,请检查以下我访问过的链接。
1. First Link
2. Second Link
3. Third Link
4. Forth Link
5. Fifth Link
请帮助我解决这个问题。谢谢 :)

最佳答案

我已经按照以下方法完成了上述任务,请看一下解决方案


 <android.support.design.widget.BottomNavigationView
            android:id="@+id/bottom_navigation"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:layout_alignParentBottom="true"
            android:background="@color/header_color"
            app:itemIconTint="@color/white_color"
            app:itemTextColor="@color/white_color"
            app:menu="@menu/bottom_navigation" />  /// YOUR MENU ITEMS FOR THE BOTTOM NAVIGATION

您的徽章计数布局如下
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/notificationsBadge"
        android:layout_width="25dp"
        android:layout_height="25dp"
        android:layout_gravity="top|center_horizontal"
        android:layout_marginLeft="10dp"
        android:layout_marginStart="10dp"
        android:background="@drawable/circle_red"
        android:gravity="center"
        android:padding="4dp"
        android:text=""
        android:textColor="@android:color/white"
        android:textSize="12sp" />
</FrameLayout>

而且比您的徽章可绘制后更像下面
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid android:color="@android:color/holo_red_light" />
    <size
        android:width="20dp"
        android:height="20dp" />
</shape>

最后,您需要将徽章布局添加到我们的BottomNavigationView所在的 MainActivity.java 中,请检查以下代码。
    BottomNavigationMenuView mbottomNavigationMenuView =
            (BottomNavigationMenuView) mBinding.bottomNavigation.getChildAt(0);

    View view = mbottomNavigationMenuView.getChildAt(4);

    BottomNavigationItemView itemView = (BottomNavigationItemView) view;

    View cart_badge = LayoutInflater.from(this)
            .inflate(R.layout.profile_view,
                    mbottomNavigationMenuView, false);

    //// AND THAN SET THE COUNTER BADGE, AS FOLLOW
    ((TextView) cart_badge.findViewById(R.id.notificationsBadge)).setText("5");

    itemView.addView(cart_badge);

关于java - 如何创建Bottomnavigationview Android的自定义项目?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45484998/

10-11 00:58