tablayout 均分
时间: 2023-08-24 09:09:45 浏览: 68
cad定制家具平面图工具-用18板均分空间
5星 · 资源好评率100%
要让TabLayout实现均分效果,可以使用`app:tabMode="fixed"`和`app:tabGravity="fill"`两个属性,代码如下:
```xml
<com.google.android.material.tabs.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="fill"/>
```
其中,`app:tabMode="fixed"`表示固定模式,`app:tabGravity="fill"`表示填充模式。这两个属性的组合可以让TabLayout中的每个Tab item均分TabLayout的宽度。
阅读全文