TabLayout宽度错误

时间:2016-04-14 13:35:06

标签: android android-4.4-kitkat android-design-library

我是ancounter我的bug,它在不同的Android版本上制作不同的标签宽度。在android 4.1.1和android 5.1 tab宽度服从模式'fill'和tablayout宽度匹配perent。虽然在Android 4.4.4宽度看起来像wrap_content。设计库版本23.3.0。如何解决?

enter image description here

enter image description here

enter image description here

布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:clickable="true"
    >
  <android.support.design.widget.TabLayout
      android:id="@+id/tabs"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      app:tabMode="fixed"
      app:tabGravity="fill"
      app:tabIndicatorHeight="0dip"
      app:tabIndicatorColor="@android:color/transparent"
      app:tabBackground="@drawable/tab_request_background"
      app:tabTextColor="@color/colorPrimary"
      app:tabSelectedTextColor="@color/white"
      />
  <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"
      />
</LinearLayout>

2 个答案:

答案 0 :(得分:0)

似乎没有简单的方法可以解决这个问题:

/// Android SDK 24.2.0 TabLayout.java

public void setTabGravity(@TabGravity int gravity) {
        if (mTabGravity != gravity) {
            mTabGravity = gravity;
            applyModeAndGravity();
        }
    }

private void applyModeAndGravity() {
        int paddingStart = 0;
        if (mMode == MODE_SCROLLABLE) {
            // If we're scrollable, or fixed at start, inset using padding
            paddingStart = Math.max(0, mContentInsetStart - mTabPaddingStart);
        }
        ViewCompat.setPaddingRelative(mTabStrip, paddingStart, 0, 0, 0);

        switch (mMode) {
            case MODE_FIXED:
                mTabStrip.setGravity(Gravity.CENTER_HORIZONTAL);
                break;
            case MODE_SCROLLABLE:
                mTabStrip.setGravity(GravityCompat.START);
                break;
        }

        updateTabViews(true);
    }

Soo愚蠢的错误:(

答案 1 :(得分:0)

发现将tab min width设置为0可以解决此问题。它似乎不是一个但只是feature,因为在高宽度设备上,标签被填充到很多空间(特别是在横向模式下的平板电脑上),支持库开发人员强迫我们处理它以创建更好的接口