如何在Whatsapp的标签布局中制作一个计数器?

时间:2017-10-17 20:57:25

标签: android chat whatsapp android-tablayout

现在我只有一个使用视图寻呼机的简单标签布局。我想知道如何自定义我的选项卡布局,以便在我的应用程序中具有一个功能,以便在我的视图分页器中显示我的回收器视图中该片段的项目数。 感谢

This is an example

3 个答案:

答案 0 :(得分:1)

{{1}}

答案 1 :(得分:0)

您可以这样做:

LinearLaout tabone= (LinearLaout ) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);

TextView txtView= (TextView) tabone.findViewById(R.id.txtview);
txtView.setText("ONE");

TextView txtCount= (ImageView ) tabone.findViewById(R.id.txtcount);
txtCount.setText("200")//Count
/*Also don't forgot to add background of count textview in xml according to your design.*/

 tabLayout.getTabAt(0).setCustomView(tabone);

就是这样!!

答案 2 :(得分:0)