美文网首页
TabLayout 均分

TabLayout 均分

作者: toExploreFuture | 来源:发表于2022-12-11 16:55 被阅读0次
     <com.google.android.material.tabs.TabLayout
                android:id="@+id/tab_layout"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:background="@color/white"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@id/normalHead"
                app:tabMaxWidth="0dp"
                app:tabIndicatorColor="@color/black"
                app:tabIndicatorFullWidth="true"
                app:tabIndicatorHeight="2dp"
                app:tabMode="fixed"
                app:tabGravity="fill"
                app:tabSelectedTextColor="@color/black"
                app:tabTextColor="@color/gray"
                app:tabUnboundedRipple="true" />
    

    app:tabMode="fixed"
    app:tabGravity="fill"

    相关文章

      网友评论

          本文标题:TabLayout 均分

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