无法将高度设置为自定义选项卡布局

时间:2016-02-25 15:07:43

标签: android material-design android-tablayout

我想为我的应用程序创建自定义标签布局。问题是我无法为此设置高度。

请帮助解决问题。

<android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="@dimen/tab_height"
        android:background="@color/colorAccent"/>

custom_tab.xml

<?xml version="1.0" encoding="utf-8"?>

<FrameLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/tabIcon"
        android:layout_width="30dp"
        android:layout_height="30dp"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="top|right"
        android:background="@drawable/white_circle"
        android:gravity="center"
        android:text="2"
        android:textColor="@color/colorAccent"/>
</FrameLayout>

<TextView
    android:id="@+id/tabName"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="@drawable/tab_text_selection_states"
    android:textSize="14sp"/>

</LinearLayout>

2 个答案:

答案 0 :(得分:3)

不要将android:layout_height="wrap_content"用于TabLayout。只需使用android:layoutHeight="@dimen/tab_height"即可。你的FrameLayout也是如此。

答案 1 :(得分:2)

在TabLayout内部将android:layout_height="wrap_content"更改为android:layout_height="100dp"或您想要多少dps。