徽标¶
徽标控件目前提供了圆点和气泡两种支持形式。
隐藏圆点徽标 | 显示圆点徽标 | 隐藏气泡徽标 | 显示气泡徽标 |
---|---|---|---|
快速使用¶
圆点徽标需要设置 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>