Android tablayout文本对齐方式从22.2.1更改为23.1.0时更改

时间:2015-12-02 11:17:28

标签: text-alignment android-tablayout

我刚刚更新了android设计支持库,我发现文本对齐方式已经改变。

请在下面找到截图。

enter image description here

你可以看到" MORE"没有正确对齐。

这是代码段

TextView tabFour = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
    tabFour.setText("More");
    tabFour.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.ic_menu, 0, 0);
    tabLayout.getTabAt(3).setCustomView(tabFour);

这里是tablayout的xml主体及其自定义布局

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.percent.PercentRelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            app:layout_heightPercent="10%"
            app:tabMode="fixed"
            app:tabGravity="fill"/>
    </android.support.percent.PercentRelativeLayout>
    <LinearLayout
        android:id="@+id/croutonview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"/>
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>

这是自定义标签布局

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tab"
android:textColor="@color/colorAccent"
android:textSize="@dimen/tab_label"
android:fontFamily="@string/font_fontFamily_medium"/>

0 个答案:

没有答案