简体   繁体   English

android选项卡布局设计库

[英]android Tab Layout Design Library

I am using TabLayout from new android.support.design.widget package. 我在新的android.support.design.widget包中使用TabLayout。

<android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabGravity="fill"
        app:tabIndicatorColor="@android:color/white"
        app:tabMode="fixed" />

But on tablets they looks like 但在平板电脑上他们看起来像

在此输入图像描述

How to stretch them to fill full width. 如何拉伸它们以填满整个宽度。 Thanks. 谢谢。

Taken the answer from Tab not taking full width on Tablet device [Using android.support.design.widget.TabLayout] Tab上获取答案并未占用平板电脑设备的全宽[使用android.support.design.widget.TabLayout]

Credit goes to Kaizie 归功于Kaizie

Implement your own TabLayoutStyle like this 像这样实现你自己的TabLayoutStyle

<style name="MyTabLayout" parent="Widget.Design.TabLayout">
        <item name="tabGravity">fill</item>
        <item name="tabMaxWidth">0dp</item>
</style>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM