gpt4 book ai didi

Android TabLayout——选项卡向左折叠

转载 作者:太空狗 更新时间:2023-10-29 14:06:43 28 4
gpt4 key购买 nike

我已经实现了一个有效的 TabLayout。这是 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
app:elevation="4dp">

<android.support.design.widget.TabLayout
android:id="@+id/club_sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabMode="scrollable"
app:tabSelectedTextColor="@android:color/white"
app:tabTextColor="#EEEEEE"/>

</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1"
android:background="@android:color/white"/>

</LinearLayout>

然后我用 4 个标签加载它。然后会发生什么,选项卡不会在宽度上填满屏幕,而是从左侧“线性”添加,因此选项卡栏的右端有空白区域。

我尝试了 tabMode="fixed" 但这导致选项卡标题被分成两行,例如:

CALEND
AR

有人遇到同样的问题并解决了吗?谢谢。

最佳答案

使用 app:tabMode="fixed" 而不是可滚动的。

编辑:- 用于更改选项卡布局中的文本大小

固定标签中文本的大小

<style name="MyTabLayoutTextAppearance" parent="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
<item name="android:textSize">14sp</item>
</style>

app:tabTextAppearance="@style/MyTabLayoutTextAppearance"

关于Android TabLayout——选项卡向左折叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31791186/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com