跳转至

徽标

Version 0.5.3

徽标控件目前提供了圆点气泡两种支持形式。

隐藏圆点徽标 显示圆点徽标 隐藏气泡徽标 显示气泡徽标
隐藏圆点徽标 显示圆点徽标 隐藏气泡徽标 显示气泡徽标

快速使用

Version 0.5.3

圆点徽标需要设置 badge_mode 属性为 dot

<com.ave.vastgui.tools.view.badgeview.BadgeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:badge_mode="dot">

    <com.google.android.material.textview.MaterialTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Dot"
        ... />

</com.ave.vastgui.tools.view.badgeview.BadgeLayout>

圆点徽标需要设置 badge_mode 属性为 number 或者 text

<com.ave.vastgui.tools.view.badgeview.BadgeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:badge_mode="number">

    <com.google.android.material.textview.MaterialTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Number Bubble"
        ... />

</com.ave.vastgui.tools.view.badgeview.BadgeLayout>

查看默认样式