美文网首页Android开发之路
安卓TabLayout加小红点提示内容更新

安卓TabLayout加小红点提示内容更新

作者: 北边一小民 | 来源:发表于2018-09-25 14:51 被阅读709次

    在作者【原文】的基础上做了修改。

    安卓原生的android.support.design.widget.TabLayout,配合ViewPager已经很好用了,但是有时我们会在内容更新时,在tab标题右上方加上一个红点等标记此tab内容有更新时,就需要给原生的TabLayout设置你定义的布局,用法和原生的一样,只是在代码中设置一下TabLayout的布局。

    1.自定义Tab样式布局,@drawable/shape_red_solid就是一个shape资源,一个实心红圆点
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:orientation="horizontal">
    <TextView
    android:textSize="15sp"
    android:id="@+id/tv_tab_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:textColor="@color/color_text_a3" />
    <ImageView
    android:id="@+id/iv_tab_red"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/shape_red_solid" />
    </LinearLayout>

    2.在ViewPager适配器中写一个getTabView方法,获取自定义布局

    public View getTabView(int position) {
    View tabView = LayoutInflater.from(mContext).inflate(R.layout.item_tab_layout, null);
    TextView tabTitle = (TextView) tabView.findViewById(R.id.tv_tab_title);
    tabTitle.setText(list_title.get(position));
    return tabView;
    }

    3.在设置完ViewPager适配器后设置TabLayout,主要代码就是tabLayout.getTabAt(i).setCustomView(tabView) 设置tabLayout的布局

    //TabLayout加载viewpager
    tabLayout.setupWithViewPager(tab_viewpager);
    //设置小红点
    for (int i = 0; i < tabLayout.getTabCount(); i++) {
    View tabView = myAdapter.getTabView(i);
    ImageView imageView= tabView.findViewById(R.id.iv_tab_red);
    TextView textView= tabView.findViewById(R.id.tv_tab_title);
    /在这里判断每个TabLayout的内容是否有更新,来设置小红点是否显示/
    tabLayout.getTabAt(i).setCustomView(tabView);
    }

    4.由于自定义Tab布局后,tab切换后标题字体颜色变化失效,设置TabLayout的监听来设置字体颜色变化,设置TabLayout选中后小红点消失,根据自己的逻辑记录更新内容已读取。

    //设置tablayout的选中监听
    tabLayout.addOnTabSelectedListener(new MyTabSelectedListener());
    class MyTabSelectedListener implements TabLayout.OnTabSelectedListener{
    @Override
    public void onTabSelected(TabLayout.Tab tab) {
    int position = tab.getPosition();
    /在这里记录TabLayout选中后内容更新已读标记/
    View customView = tab.getCustomView();
    if(customView!=null){
    customView.findViewById(R.id.iv_tab_red).setVisibility(View.GONE);
    TextView textView = (TextView) customView.findViewById(R.id.tv_tab_title);
    textView.setTextColor(getResources().getColor(R.color.color_text_6));
    }
    }

    @Override
    public void onTabUnselected(TabLayout.Tab tab) {
    View customView = tab.getCustomView();
    if(customView){
    TextView textView = (TextView) customView.findViewById(R.id.tv_tab_title);
    textView.setTextColor(getResources().getColor(R.color.color_text_a3));
    }
    }

    @Override
    public void onTabReselected(TabLayout.Tab tab) {

    }
    }


    本文来自 流浪的搬砖者 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/xuweihui2019/article/details/53606339?utm_source=copy

    相关文章

      网友评论

        本文标题:安卓TabLayout加小红点提示内容更新

        本文链接:https://www.haomeiwen.com/subject/iihloftx.html