100

我已经android:textAllCaps="false"在我的android.support.design.widget.TabLayout想法中设置了它只显示全部大写的标签标题。

如何删除所有大写字母?

4

16 回答 16

202

设计库更新 23.2.0+

原始答案不适用于设计库 23.2.0 或更高版本。感谢@fahmad6 在评论中指出,如果有人错过了该评论,我会把它放在这里。您需要同时设置和textAllCaps禁用所有大写设置。android:textAllCapsfalse

<style name="MyCustomTextAppearance" parent="TextAppearance.Design.Tab">
      <item name="textAllCaps">false</item>
      <item name="android:textAllCaps">false</item>
</style>

原始答案

默认情况下,选项卡由 TabLayout 创建,将 textAllCaps 属性设置为 true,您必须定义一个样式,使该标志为 false。

<style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
      <item name="tabTextAppearance">@style/MyCustomTextAppearance</item>
</style>

<style name="MyCustomTextAppearance" parent="TextAppearance.Design.Tab">
      <item name="textAllCaps">false</item>
</style>
于 2015-07-09T06:45:28.743 回答
88

@Paresh Mayani 的答案是正确的,但是您只能创建选项卡样式

<style name="MyCustomTextAppearance" parent="TextAppearance.Design.Tab">
  <item name="textAllCaps">false</item>
</style>

并使用它

<android.support.design.widget.TabLayout
    app:tabTextAppearance="@style/MyCustomTextAppearance"
    .../>
于 2015-11-02T11:36:10.333 回答
41

使用此属性app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget" 它将起作用。

  <android.support.design.widget.TabLayout
    android:id="@+id/tablayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    app:tabGravity="fill"
    app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
    app:tabIndicatorColor="@color/colorPrimary"
    app:tabMode="fixed"
    app:tabPaddingStart="0dp" />
于 2017-09-26T11:33:04.113 回答
39

https://stackoverflow.com/a/34678235/1025379

<android.support.design.widget.TabLayout
    app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
/>
于 2016-03-24T00:07:30.840 回答
15

在我的情况下,有两个变体起作用:

1)博格丹(susemi99):

<android.support.design.widget.TabLayout
    app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
/>

2) 帕雷什·玛雅尼 (Paresh Mayani)。我想同时拥有android:textAllCaps="false"android:textSize="15sp"所以他的旧方法有效。

写入(父级可能会有所不同,例如styles.xml,“@android:style/TextAppearance.Widget.TabWidget”、“TextAppearance.Design.Tab”):

<style name="TabLayout" parent="Widget.Design.TabLayout">
    <item name="tabIndicatorColor">@color/color_blue</item>
    <item name="tabSelectedTextColor">@color/color_blue</item>
    <item name="tabTextColor">@color/black</item>
    <item name="tabTextAppearance">@style/TabLayoutTextAppearance</item>
</style>

<style name="TabLayoutTextAppearance" parent="TextAppearance.Design.Tab">
    <item name="android:textSize">15sp</item>
    <item name="textAllCaps">false</item>
    <item name="android:textAllCaps">false</item>
</style>

在布局中应用此样式:

<android.support.design.widget.TabLayout
    android:id="@+id/tab_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    style="@style/TabLayout"
    />
于 2018-08-02T09:17:03.800 回答
13

对于那些无法得到其他答案的人。

当您有单行制表符文本时,定义样式可以正常工作。如果您仔细查看TableAut,您会发现它是使用字段design_tab_text_size_2line当标签有多个行时。

我能找到影响该字段的唯一方法是在您的 dimen 文件中覆盖它。

所以把它放在你的 values/dimens.xml

<dimen name="design_tab_text_size_2line" tools:override="true">10sp</dimen>

希望能帮助到你。

于 2018-02-14T22:33:52.647 回答
6

这对我来说只有一行

 <android.support.design.widget.TabLayout
    app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"/>
于 2021-04-16T11:14:32.923 回答
5

这是简单的解决方案....享受

 for (int tabIndex = 0; tabIndex <tabLayout.getTabCount() ; tabIndex++) {
        TextView tabTextView = (TextView)(((LinearLayout)((LinearLayout)tabLayout.getChildAt(0)).getChildAt(tabIndex)).getChildAt(1));
        tabTextView.setAllCaps(false);
    }
于 2016-10-06T07:28:11.403 回答
3

这对我有用...

<style name="TabLayoutStyle" parent="Widget.Design.TabLayout">
    <item name="tabTextAppearance">@style/TabTextAppearance</item>
</style>

<style name="TabTextAppearance" parent="TextAppearance.Design.Tab">
    <item name="textAllCaps">false</item>
</style>
于 2019-12-05T06:00:39.990 回答
3

改变: <item name="android:textAllCaps">false</item>

和: <item name="textAllCaps">false</item>

于 2018-08-10T12:18:48.137 回答
2

尝试以下方法,您可以实现TextViewin的所有方法TabLayout

private void setCustomTab() {

    ViewGroup vg = (ViewGroup) mTabLayout.getChildAt(0);
    int tabsCount = vg.getChildCount();
    for (int j = 0; j < tabsCount; j++) {
        ViewGroup vgTab = (ViewGroup) vg.getChildAt(j);
        int tabChildsCount = vgTab.getChildCount();
        for (int i = 0; i < tabChildsCount; i++) {
            View tabViewChild = vgTab.getChildAt(i);
            if (tabViewChild instanceof TextView) {
                ((TextView) tabViewChild).setTypeface(ResourcesCompat.getFont(this,R.font.montserrat_medium));
                ((TextView) tabViewChild).setAllCaps(false);
            }
        }
    }
}

希望能帮助到你。

于 2018-02-15T11:36:10.303 回答
2

在 14 之前的版本中,您需要设置(由 Paresh Mayani 评论):

<style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
  <item name="tabTextAppearance">@style/MyCustomTextAppearance</item>
</style>

<style name="MyCustomTextAppearance" parent="TextAppearance.Design.Tab">
  <item name="textAllCaps">false</item>
</style>

但是,如果 android 版本等于或大于 14,则需要设置:

<item name="android:textAllCaps">false</item>

所以,如果你需要兼容14之前和之后的版本,你需要创建一个文件夹values-v14,并在该文件夹中创建一个文件styles.xml,内容如下:

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
    <style name="MyCustomTextAppearance" parent="TextAppearance.Design.Tab">
      <item name="android:textAllCaps">false</item>
    </style>
</resources>
于 2015-07-31T15:26:40.850 回答
0

您也可以在 Java 代码中执行此操作。如果您使用的是 SlidingTabLayout,请查看此示例:

protected TextView createDefaultTabView(Context context){
        TextView textView = new TextView(context);
        textView.setGravity(Gravity.CENTER);
        textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, TAB_VIEW_TEXT_SIZE_SP);//see line 38 above change the value their in TAB_VIEW_TEXT_SIZE_SP.
        textView.setTypeface(Typeface.DEFAULT);//From DEFAULT_BOLD
        textView.setTextColor(Color.parseColor("#536DFE"));//Text color of the words in the tabs. Indigo A200

        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){
            // If we're running on Honeycomb or newer, then we can use the Theme's
        // selectableItemBackground to ensure that the View has a pressed state
            TypedValue outValue = new TypedValue();
            getContext().getTheme().resolveAttribute(android.R.attr.selectableItemBackground, outValue, true);
            textView.setBackgroundResource(outValue.resourceId);
        }

        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH){
            // If we're running on ICS or newer, enable all-caps to match the Action Bar tab style
            textView.setAllCaps(true);
        }

        int padding = (int)(TAB_VIEW_PADDING_DIPS * getResources().getDisplayMetrics().density);
        textView.setPadding(padding, padding, padding, padding);

        return textView;
    }

请注意, textView.setAllCaps() 具有true作为周长:

if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH){
            // If we're running on ICS or newer, enable all-caps to match the Action Bar tab style
            textView.setAllCaps(true);
        }

当我将其更改为 (false) 时,它为我解决了问题:

textView.setAllCaps(false);

我用于选项卡的字符串资源文件也如下所示:

<string name="tab_title">Title with capital and smaller case</string>

但是,如果它有像​​ >TITLE WITH ALL CAPS< 这样的所有大写字母,您当然仍然会在标签中获得所有大写字母。

我没有做其他更改。

值得注意的是,您也可以设置 textView.setAllCaps(false) ,但这对我的情况没有影响。我刚刚注释掉了 textView.setAllCaps(true)。

于 2015-10-28T03:05:48.343 回答
0

只需将其添加到您的自定义样式文件中

<item name="android:textStyle">normal</item>

我阅读了上述所有解决方案,都导致了这一点。

于 2020-09-18T17:46:31.573 回答
0

更改 XML 文件中的属性在 Android 11 (SDK 30) 中不起作用。这是我用来使用标签标签单独设置标签的代码。它比为选项卡中的所有文本字段设置新样式或依赖现有选项卡布局更安全,因为当前选项卡设计可以通过 Android 更改。此方法假定在调用以下函数之前已设置选项卡文本。调用中的第二个参数,txt 是标签标签。

private fun setTabStyle(tabs: TabLayout, txt: String) {
    val av = ArrayList<View?>()
    tabs.findViewsWithText(av, txt, View.FIND_VIEWS_WITH_CONTENT_DESCRIPTION )
    if (av.count() > 0) {
        val avt = ArrayList<View?>()
        (av[0] as? ViewGroup)?.let {
            for ( i in 0 until it.childCount) {
                val tv = it.getChildAt(i) as? TextView
                tv?.let {t ->
                    if (tv.text == txt) {
                        t.isAllCaps = false
                        t.setTextSize(TypedValue.COMPLEX_UNIT_SP, 11.toFloat())

                    }
                }

            }

        }
    }

}
于 2021-03-28T04:03:49.540 回答
0

长话短说(以编程方式)...

/**
 * @param view Target TabLayout view
 * @param caps Present the text caps style
 */
public static void setAllCaps(View view, boolean caps) {
    if (view instanceof ViewGroup) {
        for (int i = 0; i < ((ViewGroup) view).getChildCount(); i++)
            setAllCaps(((ViewGroup) view).getChildAt(i),caps);
    } else if (view instanceof TextView) ((TextView) view).setAllCaps(caps);
}

像这样打电话setAllCaps

    tabLayout.addTab(tabLayout.newTab().setText("Recent"));
    tabLayout.addTab(tabLayout.newTab().setText("New"));
    setAllCaps(tabLayout,false);

在此处输入图像描述

于 2021-08-20T11:08:07.740 回答