gpt4 book ai didi

android - 更改选项卡内的文字大小

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:40:47 25 4
gpt4 key购买 nike

我正在为各种屏幕尺寸设计我的应用程序,但我遇到了一个小问题。我无法更改选项卡内文本的大小。这是我所做的。

首先我创造了自己的风格。

<style name="MineCustomTabText" parent="TextAppearance.Design.Tab">
<item name="android:textSize">22sp</item>
</style>

然后我将这种样式用于适当的 xml 文件。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="manutd.football.app.interviews.InterviewsActivity">

<manutd.football.app.SlidingTabLayout
android:id="@+id/tabs"
app:tabTextAppearance="@style/MineCustomTabText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="2dp"
android:background="#656e99" />

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_below="@+id/tabs"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"
></android.support.v4.view.ViewPager>

</RelativeLayout>

有什么想法吗?谢谢

最佳答案

我不知道你选择 manutd.football.app.SlidingTabLayout 的原因

你可以使用

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
style="@style/MyCustomTabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.design.widget.TabLayout>

通过这个你可以在你的标签中改变你想要的东西

<style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
<item name="tabMaxWidth">@dimen/tab_max_width</item>
<item name="tabIndicatorColor">?attr/colorAccent</item>
<item name="tabIndicatorHeight">2dp</item>
<item name="tabPaddingStart">12dp</item>
<item name="tabPaddingEnd">12dp</item>
<item name="tabBackground">?attr/selectableItemBackground</item>
<item name="tabTextAppearance">@style/MyCustomTabTextAppearance</item>
<item name="tabSelectedTextColor">?android:textColorPrimary</item>
</style>
<style name="MyCustomTabTextAppearance" parent="TextAppearance.Design.Tab">
<item name="android:textSize">14sp</item>
<item name="android:textColor">?android:textColorSecondary</item>
<item name="textAllCaps">true</item>
</style>

关于android - 更改选项卡内的文字大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36384560/

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