安卓开发-TabLayout控件使用关键属性设置

<com.google.android.material.tabs.TabLayout
            android:id="@+id/tablayout"
            android:layout_width="wrap_content"
            android:layout_height="80dp"
            app:tabTextAppearance="@style/vpa_custom_tablayout_style"
            //tab按钮文字颜色
            app:tabTextColor="@color/black_6017191E"
            //tab按钮选中时的文字颜色
            app:tabSelectedTextColor="@color/black_17191E"
            app:tabMode="scrollable"
            app:tabMinWidth="180dp"
            app:tabMaxWidth="300dp"
            app:tabPadding="0dp"
            android:longClickable="false"
            app:tabIndicator="@mipmap/ic_vpa_custom_tab_bottom"
            //下划线位置
            app:tabIndicatorGravity="bottom"
            app:tabIndicatorAnimationMode="linear"
            app:tabIndicatorHeight="10dp"
            app:tabIndicatorColor="@color/blue_3292F5"
            //下划线是否占据tab整个宽度; false:长度和文字同步
            app:tabIndicatorFullWidth="false"
            android:background="@color/white_ECEFF4"
            android:layout_marginStart="20dp"
            >
            <com.google.android.material.tabs.TabItem
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:text="@string/vpa_custom_tab_1"
                />

            <com.google.android.material.tabs.TabItem
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:text="@string/vpa_custom_tab_2"
                />

        </com.google.android.material.tabs.TabLayout>
for (int i = 0; i < tabLayout.getTabCount(); i++) {
            TabLayout.Tab tab = tabLayout.getTabAt(i);
            if(tab != null) {
                //去掉长按tab按钮会出现的toast弹框
                tab.view.setLongClickable(false);
                tab.view.setTooltipText(null);
                //去掉点击tab按钮会出现的黑色背景
                tab.view.setBackground(null);
            }
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值