我有一个标签布局,其中一个项目中有两个标签。我想知道你是否可以改变标签选择颜色(粉红色线条)并使其成为其他颜色。
这是xml
<android.support.design.widget.CoordinatorLayout 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.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#212121"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="fill"
android:background="#212121"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
答案 0 :(得分:3)
将此行添加到您的tablayout ...
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#212121"
app:layout_scrollFlags="scroll|enterAlways"
app:tabIndicatorColor="@color/white"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
它会完成这项工作。
答案 1 :(得分:0)
定义一个选择器并将其应用于样式中的TabLayout:
var isWebkit = require('../Utils').isWebkit;
document.write('isWebkit - ' + isWebkit);
function ClassA(options){
if(isWebkit){
// do some crazy stuff
}
}
module.exports = ClassA;