代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.appmaster.akash.messageplus.HomeScreen"
tools:showIn="@layout/app_bar_main">
<!-- Note : This is the container Frame Layout for all the fragmetns-->
<FrameLayout
android:background="@color/black"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mainFrame">
<!--<FrameLayout-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="?attr/actionBarSize"-->
<!--android:id="@+id/frame">-->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.TabLayout
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:elevation="5dp"
android:background="@color/black"
app:tabTextColor="@color/white"
app:tabSelectedTextColor="@color/grey"
app:theme="@style/ThemeOverlay.AppCompat.Dark"
app:layout_scrollFlags="scroll|enterAlways"
tools:ignore="UnusedAttribute" />
<RelativeLayout
android:layout_below="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"></android.support.v4.view.ViewPager>
</RelativeLayout>
</RelativeLayout>
</FrameLayout>
<!--</FrameLayout>-->
如何更改所选标签的背景颜色??? 我知道如何像代码中一样更改选定的文本颜色...但是如何将其更改为背景颜色?因为即时通讯使用的是图标而不是文字,而且我不认为可以更改图标颜色,所以我只想更改所选标签的背景颜色