答案 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>