使用badgeView

时间:2017-07-26 13:31:47

标签: android badge

我已经全面了解stackoverflow如何在标签布局中的标签图标中添加徽章,但没有答案。

这是我的代码

//Get reference to your Tablayout
    TabLayout tabLayout = (TabLayout) findViewById(R.id.tabs);
    tabLayout.setupWithViewPager(mViewPager);
     tabLayout.getTabAt(0).setIcon(ICONS[0]);
    tabLayout.getTabAt(1).setIcon(ICONS[1]);
    tabLayout.getTabAt(2).setIcon(ICONS[2]);

    BadgeView badge = new BadgeView(this, tabLayout.getTabAt(0).getCustomView());
    badge.setText("1"); //Whatever value you should add
    badge.show();


    BadgeView mMotification = new BadgeView(this, tabLayout.getChildAt(1));
    mMotification.setText("10");
    mMotification.show();

我还尝试了许多其他选择,但看起来像BadgeView只接受视图

2 个答案:

答案 0 :(得分:0)

您可以为选项卡创建自定义布局,并将其添加到TabLayout

答案 1 :(得分:0)

这就是我为它工作所做的事情

TabLayout.Tab tab = tabLayout.getTabAt(0);
    ImageView imageView = new ImageView(this);
    imageView.setImageResource(R.drawable.ic_notifications);

    tab.setCustomView(imageView);
    BadgeView badge = new BadgeView(this, imageView);
    badge.setText("23");
    badge.setBadgeMargin(25,0);
    badge.show();