要設置TabLayout的背景,可以通過設置TabLayout的background屬性來實現。可以在xml文件中設置如下代碼:
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
app:tabIndicatorColor="@color/colorAccent"
app:tabIndicatorHeight="3dp"
app:tabSelectedTextColor="@android:color/white"
app:tabTextColor="@android:color/white"/>
在這個例子中,我們設置了TabLayout的背景顏色為colorPrimary,選中的tab的指示器顏色為colorAccent,選中的tab的文字顏色為白色,未選中的tab的文字顏色也為白色。你也可以根據自己的需要進行調整。