TabLayout (Android Design Library) สีข้อความ


85

ฉันใช้ TabLayout ใหม่จากไลบรารี Android Design ฉันจัดการเพื่อตั้งค่าสถิติ textcolor โดยใช้tabLayout.setTabTextColors(colorstatelist)

ฉันจะบรรลุสิ่งเดียวกันโดยใช้ styles.xml ได้อย่างไร

คำตอบ:


256

ผ่านแอตทริบิวต์ XML:

<android.support.design.widget.TabLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabMode="fixed"
        app:tabGravity="fill"
        app:tabTextColor="@color/your_unselected_text_color"
        app:tabSelectedTextColor="@color/your_selected_text_color"/>

นอกจากนี้ยังมีแอตทริบิวต์เช่น tabIndicatorColor หรือ tabIndicatorHeight สำหรับการจัดแต่งทรงผมเพิ่มเติม

ในรหัส:

tabLayout.setTabTextColors(
    getResources().getColor(R.color.your_unselected_text_color),
    getResources().getColor(R.color.your_selected_text_color)
);

เนื่องจากวิธีเก่านี้เลิกใช้งานไปแล้วเมื่อ API 23 ทางเลือกคือ:

tabLayout.setTabTextColors(
    ContextCompat.getColor(context, R.color.your_unselected_text_color),
    ContextCompat.getColor(context, R.color.your_selected_text_color)
);

@ เฟเลอจะทำอย่างไรถ้าฉันต้องการเปลี่ยนแปลงในทางปฏิบัติ?
PriyankaChauhan

@pcpriyanka ขอบคุณสำหรับเคล็ดลับฉันได้อัปเดตคำตอบของฉันด้วยวิธีง่ายๆในการกำหนดสีที่เลือกและไม่ได้เลือกในรหัส
Fe Le

81

นี่คือโค้ดตัวอย่างเพื่อแทนที่รูปแบบข้อความและสีข้อความที่เลือก

<style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
    <item name="tabTextAppearance">@style/MyCustomTabText</item>
    <item name="tabSelectedTextColor">@color/tab_text_act</item>
</style>

<style name="MyCustomTabText" parent="TextAppearance.AppCompat.Button">
    <item name="android:textSize">14sp</item>
    <item name="android:textColor">@color/tab_text</item>
</style>

และนี่คือโค้ดตัวอย่างสำหรับการจัดวาง

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

1
ขอบคุณ - สิ่งนี้ใช้ได้กับฉัน เช่นเดียวกับที่จะชี้ให้เห็นว่า tabSelectedTextColor เป็นสีของเส้นใต้แท็บและข้อความของแท็บเมื่อแท็บที่ฉันเลือก
Simon

เหตุใดคุณจึงสืบทอด Widget.Design.TabLayout
SpaceMonkey

1
ทำไมเราต้องใช้ "style" ที่นี่บน TabLayout เหตุใดจึงใช้งานไม่ได้หากฉันใช้ "android: theme"
SpaceMonkey

@Spacemonkey เนื่องจาก Widget.Design.TabLayout มีรูปแบบพื้นฐานสำหรับแท็บเช่น "tabIndicatorColor", "tabIndicatorHeight"
sweetrenard

@sweetrenard โอ้มันเป็นการลบล้างธีมที่ฉันระบุใน
SpaceMonkey

5

คำตอบทั้งหมดข้างต้นถูกต้อง แต่ฉันคิดว่ามันดีกว่าที่จะแทนที่สไตล์เริ่มต้นและเปลี่ยนเฉพาะองค์ประกอบที่คุณต้องการเปลี่ยนเท่านั้น ตัวอย่างด้านล่างจะทำให้ข้อความเป็นตัวหนา:

<style name="Widget.TabItem" parent="TextAppearance.Design.Tab">
    <item name="android:textStyle">bold</item>
</style>

จากนั้น .. ,

app:tabTextAppearance="@style/Widget.TabItem"

ฉันขอโทษ แต่คุณหาวิธีนี้ได้ที่ไหน
deadfish

4

คุณต้องลบล้างandroid:textAppearanceสไตล์ เนื่องจาก TabLayout ใช้ textAppearance นี่คือโค้ดขนาดเล็กของรูปแบบ

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Below will reference with our custom style -->
    <item name="android:textAppearance">@style/my_tab_text</item>
</style>

<style name="my_tab_text" parent="Base.TextAppearance.AppCompat">
    <item name="android:textColor">@android:color/holo_blue_dark</item>
</style>

และหากคุณไม่ต้องการอ้างอิงจาก Apptheme ของคุณคุณสามารถระบุไปที่ TabLayout ได้โดยตรงโดยใช้ข้อมูลโค้ดด้านล่าง

 <android.support.design.widget.TabLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabTextAppearance="@style/my_tab_text"
            app:tabIndicatorHeight="48dp"/>

ตรวจสอบให้แน่ใจว่าคุณใช้ AppCompact เป็นผู้ปกครอง
Moinkhan

โอเคคุณพูดถูกมันได้ผล แต่สำหรับแท็บ "ไม่ได้เลือก" เท่านั้น ข้อความแท็บที่เลือกเป็นสีดำสำหรับฉันเสมอ
เซบาสเตียน

ตกลงไม่มีรหัสในไลบรารีการออกแบบสำหรับการกำหนด textColor ของแท็บที่เลือกในไลบรารีสนับสนุนการออกแบบ ดังนั้นสำหรับสีข้อความในแท็บที่เลือกคุณต้องตั้งค่าโดยใช้คุณสมบัติ ..
Moinkhan

1

สำหรับแท็บที่กำหนดเองเราต้องแทนที่สิ่งต่อไปนี้: 1) app: tabTextColor // for_unselected_text "

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            style="@style/MyCustomTabLayout"
            android:layout_width="match_parent"
            android:layout_height="56dp"
            android:background="?attr/colorPrimary"
            android:scrollbarSize="24sp"
            android:visibility="gone"
            app:tabTextColor="@color/white_40_percent"
            app:tabMode="scrollable" />

2) tabSelectedTextColor // สำหรับสีของแท็บที่เลือก 3) tabIndicatorColor // color สำหรับตัวบ่งชี้แท็บ

   <style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
    <item name="android:textColorPrimary">@color/white</item>
    <item name="tabSelectedTextColor">@color/white</item>
    <item name="tabTextAppearance">@style/TabTextStyle</item>
    <item name="tabIndicatorColor">?attr/colorAccent</item>
    <item name="tabIndicatorHeight">4dp</item>
    <item name="android:tabStripEnabled">true</item>
    <item name="android:padding">0dp</item>
  </style>



<style name="TabTextStyle">
    <item name="android:fontFamily">@string/font_fontFamily_medium</item>
    <item name="android:textStyle">bold</item>
    <item name="android:textAllCaps">true</item>
    <item name="android:textColor">@color/tab_text_color</item>
    <item name="android:textSize">16sp</item>
</style>

tab_text_color.xml

 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:color="@color/white_40_percent"android:state_selected="false"/>
  <item android:color="@color/white_100_percent"android:state_selected="true"/>
 </selector>

1

ด้วยสิ่งที่TabLayoutให้ไว้ในไลบรารีส่วนประกอบของวัสดุคุณสามารถ:

  • ใช้สไตล์ที่กำหนดเอง
  <com.google.android.material.tabs.TabLayout
      style="@style/My_Tablayout"
      ..>

และในสไตล์ของคุณให้ใช้tabTextColorตัวเลือก

<!-- TabLayout -->
<style name="My_Tablayout" parent="Widget.MaterialComponents.TabLayout" >
    <item name="tabTextColor">@color/tab_layout_selector</item>
</style>


<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:color="?attr/colorPrimary" android:state_selected="true"/>
  <item android:alpha="0.60" android:color="?attr/colorOnSurface"/>
</selector>
  • ใช้app:tabTextColorในเค้าโครงของคุณ:
  <com.google.android.material.tabs.TabLayout
      app:tabTextColor="@color/tab_layout_selector"
      ..>

ใส่คำอธิบายภาพที่นี่


0

วิธีที่ง่ายและสมบูรณ์แบบ:

ในไฟล์ xml ::

<android.support.design.widget.TabLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabTextAppearance="@style/TabText"/>

ในไฟล์สไตล์ค่า:

หมายเหตุ: "cairo_semibold" เป็นแบบอักษรภายนอกคุณสามารถแทนที่ด้วยแบบอักษรของคุณได้

<style name="TabText" parent="TextAppearance.Design.Tab">
    <item name="android:textColor">#1f57ff</item>
    <item name="android:textSize">14sp</item>
    <item name="android:fontFamily">@font/cairo_semibold</item>
</style>

0

วิธีที่ดีที่สุดหรือสั้นและง่ายที่สุดคือทำให้ appbar ที่กำหนดเองเช่น

 <?xml version="1.0" encoding="utf-8"?>
    <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="?android:attr/actionBarSize"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="@color/colorAccent"
    app:theme="@style/myCustomAppBarTheme"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"><RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageButton
            android:id="@+id/btn_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:background="@android:color/transparent"
            android:src="@mipmap/ic_launcher" />

        <TextView
            android:id="@+id/txt_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="16dp"
            android:layout_marginStart="16dp"
            android:layout_toEndOf="@+id/btn_back"
            android:layout_toRightOf="@+id/btn_back"
            android:text="Title"
            android:textColor="@android:color/white"
            android:textSize="20sp"
            android:textStyle="bold" />

    </RelativeLayout>
    </android.support.v7.widget.Toolbar>

0

แอตทริบิวต์ XML

<com.google.android.material.tabs.TabLayout
                    android:id="@+id/tab_layout"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    app:tabIndicatorColor="@color/white"
                    app:tabBackground="@color/colorAccent"
                    app:tabSelectedTextColor="@color/white"
                    app:tabTextColor="@color/white"
                    app:tabMode="scrollable" />

ใน Kotlin โดยทางโปรแกรม

(tab_layout as TabLayout).setBackgroundColor(ContextCompat.getColor(mContext, R.color.colorPrimary))
(tab_layout as TabLayout).setSelectedTabIndicatorColor(ContextCompat.getColor(mContext, R.color.white))
(tab_layout as TabLayout).setTabTextColors(ContextCompat.getColor(mContext, R.color.white),
                ContextCompat.getColor(mContext, R.color.white))
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.