如何使用 ViewPager2 删除 TabLayout 上的滚动条?

How to remove scrollbar on TabLayout with ViewPager2?

这是我使用 videpager2 的选项卡布局 -

这是我的 XML -

<androidx.appcompat.widget.Toolbar
        android:id="@+id/activity_dashboard_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:titleTextColor="@color/transparent">

        <de.hdodenhof.circleimageview.CircleImageView
            android:layout_width="35dp"
            android:layout_height="35dp"
            android:src="@drawable/user_default_image"
            app:civ_border_color="@color/black"
            app:civ_border_width="1dp" />

    </androidx.appcompat.widget.Toolbar>

    <com.google.android.material.tabs.TabLayout
        android:id="@+id/activity_dashboard_tablayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="15dp"
        app:layout_constraintTop_toBottomOf="@+id/activity_dashboard_toolbar"
        app:tabGravity="fill"
        app:tabMode="fixed"
        app:tabSelectedTextColor="@color/current_tab_text_color"
        app:tabTextColor="@color/black" />

我想完全删除滚动条。我根本不想看到它。 我尝试了 android:scrollbars="none",但没有任何不同。我如何完成这种行为?

将可绘制的 Tab 指示器(该行不是滚动条而是指示器)设置为 null 似乎可行


tabLayout = findViewById(R.id.tabLayout);
tabLayout.setSelectedTabIndicator(null);

或在 xml 中这两个似乎都做同样的事情

app:tabIndicator="@null"
app:tabIndicatorHeight="0dp"

虽然根据文档设置高度已被弃用