问题 1:我想在滑动选项卡布局中更改蓝色下划线的颜色和文本(例如 FlashCards)的文本颜色。
我该如何改变呢?我还想更改 Name 后面的空格:'MyAccount'
问题 2:当我滑动 Tab 时,工具栏(抽认卡)顶部的标题应该改变。任何想法如何做到这一点。我用于布局的 XML 文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent" android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/tool_bar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="@color/colorPrimary"
>
<TextView
android:id="@+id/text_home_screeen"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textColor="@color/windowBackground"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginLeft="10dp"
android:text="@string/back_title"/>
</android.support.v7.widget.Toolbar>
<com.example.ojasjuneja.chem.SlidingTabLayout
android:id="@+id/sliding_tab"
android:background="@color/colorPrimary"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</com.example.ojasjuneja.chem.SlidingTabLayout>
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</android.support.v4.view.ViewPager>
</LinearLayout>