android原生TabLayout之自定义指示器效果

"com.google.android.material.tabs.TabLayout" 这个玩意说起来大家都不陌生。结合viewPager或者单独使用。场景非常多。当然市面上的三方也数不胜数。但是毕竟是亲儿子。用起来终归是顺手一些。下面说一下TabLayout的具体用法细节:

首先,xml布局引入(此处为举例说明,具体属性用法自行百度):

xml 复制代码
<com.google.android.material.tabs.TabLayout
        android:id="@+id/tab_record_layout"
        android:layout_width="match_parent"
        android:layout_height="43dp"
        android:background="@color/transparent"
       
       	#具体属性用法自行百度
        app:tabIndicatorColor="#0E55FD"
         />

下面先说一下具体调用:

kotlin 复制代码
 for (i in list.indices) {
		tab_layout.addTab(tab_layout.newTab()) //动态创建tab
		//亦或
		tab_layout.newTab().setText(data.type_name).setTag(data.type_id) 
 }

然后就是动态添加TabLayout的样式,如果是属性可以满足就不需要,如果自带属性不能满足效果,则自定义样式,如下:

kotlin 复制代码
 for (i in 0 until tab_layout.tabCount) {
            val tab = tab_layout.getTabAt(i)
            tab?.customView = layoutInflater.inflate(R.layout.custom_tab, null)

            if (tab != null && tab.customView != null) {
                val abIcon = tab.customView!!.findViewById<ImageView>(R.id.iv_tab_item)
                val tabTitle = tab.customView!!.findViewById<TextView>(R.id.tv_tab_item)
                tabTitle.text = tab.text

                //把第一个设为默认选中
                if (i == 0) {
                    tabTitle.setTextColor(Color.parseColor("#0E55FD"))
                    tabTitle?.typeface = Typeface.defaultFromStyle(Typeface.BOLD)
                    abIcon.isInvisible = false
                }
            }
        }
        

最后就是添加监听:

kotlin 复制代码
tab_layout.addOnTabSelectedListener(onTabSelectedListener)
//...
val onTabSelectedListener: TabLayout.OnTabSelectedListener =
        object : TabLayout.OnTabSelectedListener {
        	//选中监听
            override fun onTabSelected(tab: TabLayout.Tab) {
                if (tab.customView != null) {
                //获取自定义tab布局中的view
                    val tabIcon = tab.customView!!.findViewById<ImageView>(R.id.iv_tab_item)
                    val tabTitle = tab.customView!!.findViewById<TextView>(R.id.tv_tab_item)
                    tabTitle.text = tab.text
                    tabTitle.setTextColor(Color.parseColor("#0E55FD"))
                    tabTitle?.typeface = Typeface.defaultFromStyle(Typeface.BOLD)
                    tabIcon.isInvisible = false
                }
                type_id = mViewModel.typeList.get(tab.position).type_id
                mViewModel.getList(type_id)
            }

			// 未选中监听
            override fun onTabUnselected(tab: TabLayout.Tab) {
                if (tab.customView != null) {
                    val tabIcon = tab.customView!!.findViewById<ImageView>(R.id.iv_tab_item)
                    val tabTitle = tab.customView!!.findViewById<TextView>(R.id.tv_tab_item)
                    tabTitle.text = tab.text
                    tabTitle.setTextColor(Color.parseColor("#333333"))
                    tabTitle.typeface = Typeface.defaultFromStyle(Typeface.NORMAL);
                    tabIcon.isInvisible = true
                }
            }

            override fun onTabReselected(tab: TabLayout.Tab) {}
        }

最后,如果是ViewPager + TabLayout需要联动的话,则添加联动代码:

kotlin 复制代码
 //使用.attach()将TabLayout和ViewPager2进行绑定,如果没有这步操作将不会联动
        TabLayoutMediator(tab_layout, viewPager) { tab, position ->
            //根据position修改tab的样式和文字等
            tab.text = tabTitles[position]
        }.attach()

具体需结合场景,灵活使用。

END

相关推荐
Dnelic-2 小时前
【单元测试】【Android】JUnit 4 和 JUnit 5 的差异记录
android·junit·单元测试·android studio·自学笔记
Eastsea.Chen4 小时前
MTK Android12 user版本MtkLogger
android·framework
长亭外的少年12 小时前
Kotlin 编译失败问题及解决方案:从守护进程到 Gradle 配置
android·开发语言·kotlin
建群新人小猿14 小时前
会员等级经验问题
android·开发语言·前端·javascript·php
1024小神15 小时前
tauri2.0版本开发苹果ios和安卓android应用,环境搭建和最后编译为apk
android·ios·tauri
兰琛15 小时前
20241121 android中树结构列表(使用recyclerView实现)
android·gitee
Y多了个想法16 小时前
RK3568 android11 适配敦泰触摸屏 FocalTech-ft5526
android·rk3568·触摸屏·tp·敦泰·focaltech·ft5526
NotesChapter17 小时前
Android吸顶效果,并有着ViewPager左右切换
android
_祝你今天愉快18 小时前
分析android :The binary version of its metadata is 1.8.0, expected version is 1.5.
android
暮志未晚Webgl18 小时前
109. UE5 GAS RPG 实现检查点的存档功能
android·java·ue5