文本样式设置为斜体时,android选项卡布局文本隐藏

时间:2019-07-15 11:20:21

标签: java android

In image the information text is not displaying properly.At the end of the word N is hiding

//这是xml代码

 <com.google.android.material.tabs.TabLayout
                android:id="@+id/inforStatusTab"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:animateLayoutChanges="true"
                android:background="@android:color/white"
                android:minHeight="?attr/actionBarSize"
                app:tabGravity="fill"
                android:layout_gravity="center_horizontal"
                app:tabIndicator="@drawable/btn_corner3"
                app:tabIndicatorColor="@color/materialBlue"
                app:tabIndicatorHeight="3dp"
                app:tabMode="fixed"
                app:tabSelectedTextColor="@color/materialBlue"
                app:tabTextAppearance="@style/tab_text"
                app:tabTextColor="@android:color/black">


                <com.google.android.material.tabs.TabItem
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/information"
                    />

                <com.google.android.material.tabs.TabItem
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/approval"
                    />
            </com.google.android.material.tabs.TabLayout>

//这是选项卡布局的样式

<style name="tab_text" parent="@android:style/TextAppearance.Widget.TabWidget">
        <item name="android:fontFamily">@font/poppins_bold</item>
        <item name="android:textSize">@dimen/_10sdp</item>
        <item name="android:textStyle">italic</item>
        <item name="android:textAllCaps">true</item>
        <item name="android:singleLine">true</item>
    </style>

我正在应用中实现标签布局,问题是当我尝试为标签文本设置斜体时,文本无法正确显示。

0 个答案:

没有答案