Tablayout高度不适用于平板电脑

时间:2017-11-28 13:38:22

标签: android xml tabs tablet

我的tablayout的高度是换行内容。但它不起作用。我在这里粘贴截图。它在手机中运行正常但不在标签中。

enter image description here

这个问题也是宽度但标签app:tabMaxWidth =“0dp”帮我解决了。我怎么能克服这个?这是布局的代码。

<android.support.design.widget.TabLayout
    android:id="@+id/tablayout_add"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:tabMaxWidth="0dp"
    android:minHeight="0dp"
    android:layout_gravity="bottom"
    android:layout_below="@+id/relativeLayout"
    app:tabGravity="fill"
    app:tabBackground="@drawable/tab_color_selector"
    app:tabIndicatorColor="@color/sea_green"
    app:tabIndicatorHeight="2dp"
    app:tabMode="fixed"
    android:clickable="false"
/>

2 个答案:

答案 0 :(得分:0)

根据材料设计指南标签布局高度为48dp。在dimen文件中输入此值,并在高度中使用该维度键。

标签布局标签文字大小为14sp。

答案 1 :(得分:0)

问题在于tablayout的父级。 tablayout还可以。这是父项的代码。

    <RelativeLayout
        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:background="@color/default_app_white"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        >
        <android.support.design.widget.TabLayout
            android:id="@+id/tablayout_add"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMaxWidth="0dp"
            android:minHeight="0dp"
            android:layout_gravity="bottom"
            android:layout_below="@+id/relativeLayout"
            app:tabGravity="fill"
            app:tabBackground="@drawable/tab_color_selector"
            app:tabIndicatorColor="@color/sea_green"
            app:tabIndicatorHeight="2dp"
            app:tabMode="fixed"
            android:clickable="false"/>
</RelativeLayout>