我正在创建一个Android应用程序,用于从应用程序内的钱包中向不同的运营商充值!钱包必须有一些余额才能充电。我几乎完成了该应用程序,但是我需要在工具栏(操作栏)中显示钱包余额

我将附上一张照片:

Screen shot of the expected image

我需要实现这样的目标!请给我任何帮助!

最佳答案

您可以将计数器设置为工具栏。试试这个

@Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);

        //you can add some logic (hide it if the count == 0)
        if (badgeCount > 0) {
            ActionItemBadge.update(this, menu.findItem(R.id.item_samplebadge), FontAwesome.Icon.faw_android, ActionItemBadge.BadgeStyles.DARK_GREY, badgeCount);
        } else {
            ActionItemBadge.hide(menu.findItem(R.id.item_samplebadge));
        }

        //If you want to add your ActionItem programmatically you can do this too. You do the following:
        new ActionItemBadgeAdder().act(this).menu(menu).title(R.string.sample_2).itemDetails(0, SAMPLE2_ID, 1).showAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS).add(bigStyle, 1);
        return super.onCreateOptionsMenu(menu);
    }


https://github.com/mikepenz/Android-ActionItemBadge

android - 如何在Android操作栏中放置标签/文本,例如显示钱包余额等-LMLPHP

08-03 19:04