使用TabLayout在Android上更改锁定选项卡

时间:2018-06-07 15:58:09

标签: java android android-layout tabs

这经常被要求使用TabHost,但在我的情况下,我使用的是TabLayout,并没有找到任何类似的问题或解决方案。

main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/colorPrimary"
        android:minHeight="?attr/actionBarSize"
        app:tabGravity="fill"
        app:tabMode="fixed"
        app:tabSelectedTextColor="@color/selectedTabTitleColor"
        app:tabTextColor="@color/unselectedTabTitleColor" />


    <com.sero583.app.view.CustomViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

我正在使用,因为你可以看到一个自定义的View Pager并且我设法锁定了滑动,但是不知道如何锁定Tab标题处的按键,所有可用的方法只返回void并且我不知道如何动态设置它,因为我没有找到类似setViewingTab(int index)的方法;

0 个答案:

没有答案