自定义 PagerTabStrip 如何通过单击禁用切换选项卡 - 不工作

Custom PagerTabStrip how to disable switching tabs via click - Not Working

我想根据条件禁用 PagerTabStrip 的 "switching tabs by clicking on tab name"。

我认为以下代码是正确的,但我仍然可以通过单击选项卡名称来切换选项卡。我能够通过自定义 ViewPager 的滑动来禁用选项卡的切换,但我也想通过单击选项卡名称来禁用。

我的自定义 PagerTabStrip

package com.blah;

import android.content.Context;
import android.support.v4.view.PagerTabStrip;
import android.util.AttributeSet;
import android.view.MotionEvent;

public class CustomPagerTabStrip extends PagerTabStrip {

    private boolean isTabSwitchEnabled;

    public CustomPagerTabStrip(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.isTabSwitchEnabled = true;
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent event) {
        System.out.println("ENable?? "+isTabSwitchEnabled); // it prints out false or true based on what I have set
        if (this.isTabSwitchEnabled) {
            return super.onInterceptTouchEvent(event);
        } else {
            return false;
        }
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (this.isTabSwitchEnabled) {
            return super.onTouchEvent(event);
        }
        return false;
    }

    public void setTabSwitchEnabled(boolean isSwipeEnabled) {
        this.isTabSwitchEnabled = isSwipeEnabled;
    }
}

我使用以下方式禁用它:

CustomPagerTabStrip pagerTabStrip = (CustomPagerTabStrip) findViewById(R.id.tabtitle);
pagerTabStrip.setTabSwitchEnabled(false);

我的布局:

<com.blah.CustomViewPager xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <com.blah.CustomPagerTabStrip
            android:id="@+id/tabtitle"
            style="@style/viepagertitlestrip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:background="@color/primary"
            android:paddingBottom="4dp"
            android:paddingTop="4dp"
            >

        </com.blah.CustomPagerTabStrip>
    </com.blah.CustomViewPager>

通过返回 true 在 onInterceptTouchEvent() 中消费触摸事件。我认为它会完成工作

@Override
public boolean onInterceptTouchEvent(MotionEvent event) {
    System.out.println("ENable?? "+isTabSwitchEnabled); // it prints out false or true based on what I have set
    if (this.isTabSwitchEnabled) {
        return super.onInterceptTouchEvent(event);
    } else {
        return true;
    }
}