1
我無法處理在TabLayout選項卡上設置自定義視圖。我想在每個非活動選項卡上設置下劃線(如活動選項卡上的指示符)和特定顏色。我以這種方式創建視圖:如何在tablayout的非活動選項卡上用特定顏色設置下劃線?我的自定義視圖佔用最大標籤寬度。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@color/colorPrimary">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="@style/tab_layout_item"
android:layout_centerInParent="true"
tools:text="All in"/>
<View
android:layout_width="wrap_content"
android:layout_height="7dp"
android:background="@color/colorPrimaryDark"
android:layout_alignParentBottom="true"/>
但WRAP_CONTENT參數沒有工作和看法佔據最大製表符的寬度。
這裏是我的TabLayout XML:
<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@color/background_primary"
app:tabIndicatorHeight="0dp"
app:tabMode="scrollable"
app:tabGravity="fill"
app:tabPaddingBottom="0dp"
app:tabPaddingTop="0dp"
app:tabPaddingStart="0dp"
app:tabPaddingEnd="0dp"
android:layout_gravity="bottom"/>
如何創建TabLayout選項卡自定義視圖,其適合於內的文本(特別是當字符串中是短暫的)?
也許是實現這個結果的更好方法嗎?