gpt4 book ai didi

android - com.google.android.material.tabs.TabLayout 的自定义样式

转载 作者:行者123 更新时间:2023-12-02 12:09:21 29 4
gpt4 key购买 nike

我正在使用新的 Google Material Components适用于 Android

目前,我正在尝试为 Tablayout (com.google.android.material.tabs.TabLayout) 提供自定义外观。

我创建了如下样式:

<style name="AppTheme.TabLayout" parent="Widget.MaterialComponents.TabLayout">
<item name="android:background">@color/colorPrimary</item>
</style>

但是,应用此主题后,选项卡指示器将变得不可见

没有主题:

enter image description here

主题:

enter image description here

此外,我尝试了其他方法,例如更改 tabIndicatorColor 但仍然不起作用!

我该如何解决这个问题?更改 Material 组件颜色/主题的正确方法是什么?

最佳答案

通过这些更改,它可以按预期工作:

<com.google.android.material.tabs.TabLayout
android:id="@+id/tabLayout"
style="@style/AppTheme.TabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_collapseMode="pin"
app:tabGravity="fill"
app:tabTextAppearance="@style/customFontStyle">

//Tab items maybe

</com.google.android.material.tabs.TabLayout>

Styles.xml:

<style name="AppTheme.TabLayout" parent="Widget.MaterialComponents.TabLayout">
<item name="android:background">@color/colorPrimary</item>
<item name="tabIndicatorColor">@color/yourcolor</item>
</style>

结果:

enter image description here

关于android - com.google.android.material.tabs.TabLayout 的自定义样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53238360/

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