ConstraintLayout里的Tablayout不能点击

当使用Tablayout+viewpgae2实现联动效果,但是却发现了一个问题,viewpage里面的fragment可以滑动,tab却不能点击,
猜测原因是因为viewpgae设置为match_parent遮住了tablayout,
百度了一下,发现几个解决方法。

-用LinearLayout代替ConstraintLayout布局
-给ConstraintLayout布局里面的viewpgae2设置高度,代码如下

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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"
    android:orientation="vertical"
    <com.google.android.material.tabs.TabLayout
        android:id="@+id/tabLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabMode="scrollable"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:tabSelectedTextColor="@color/green"
        app:tabTextColor="@color/black"/>
    <androidx.viewpager2.widget.ViewPager2
        android:id="@+id/viewPage"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toBottomOf="@id/tabLayout" />