I\'m using TabLayout of the new material design and i have a problem, i can\'t update tab content of a custom view once the tab is created:
TabLayout
I can simplify m
please check my code working fine for me
TabLayout.Tab tab=tabLayout.getTabAt(position); View view=tab.getCustomView(); TextView txtCount= (TextView) view.findViewById(R.id.txtCount); txtCount.setText(count+"");