How to show unread message counter on tabs inside TabLayout?

I am using the TabLayout Android design support library.

I want to show an opaque notification counter in a tab with a header, as shown below.

enter image description here

How to set an unread account on the Tabinside TabLayout?

+4
source share
2 answers

Use public TabLayout.Tab setCustomView (int layoutResId)

Create Layoutwith TextViewand Buttonusing this in the user view.

For reference

setCustomView

Example

Hope this helps you.

+8
source
0

All Articles