Answers for "tablayout with badge android"

0

tablayout with badge android

Tab tab = tabLayout.getTabAt(position);
ImageView imageView = new ImageView(context);
tab.setCustomView(imageView);
badge = new BadgeView(context, imageView);
Posted by: Guest on October-22-2021
0

tablayout with badge android

yourTabLayout?.getTabAt(currentTabPosition)?.apply{
                        orCreateBadge
                        badge?.isVisible = true
                    }
Posted by: Guest on October-22-2021

Code answers related to "tablayout with badge android"

Browse Popular Code Answers by Language