如何在Android汉堡菜单图标上实现徽章计数器

时间:2016-01-06 12:38:02

标签: android android-layout android-drawable android-menu android-navigation-drawer

我正在尝试在汉堡菜单图标上实现计数器徽章(即不是其他菜单图标)。与eBay应用程序类似。如... ..

Ebay app badge counter

有没有人看过这个?试图找出最干净的方法。

1 个答案:

答案 0 :(得分:6)

使用Toolbar Widget非常简单,您可以按照以下示例来实现:

首先创建一个Oval shape

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid android:color="#ff00"/>
</shape>

然后创建一个toolbar小部件,如下所示:

<android.support.v7.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="?actionBarSize"
    android:background="?colorPrimary">

    <FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent">

        <ImageView
            android:id="@+id/openMenu"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_menu"/>

        <TextView
            android:id="@+id/badger"
            android:layout_width="16dp"
            android:layout_height="16dp"
            android:layout_gravity="end|right|top"
            android:layout_marginTop="10dp"
            android:background="@drawable/badge"
            android:gravity="center"
            android:text="1"
            android:textColor="@color/white"/>

    </FrameLayout>
</android.support.v7.widget.Toolbar>

enter image description here