Android ScrollView, ListView, ViewPager slide in the end of the shadow of cancellation method

In use ScrollView, ListView, ViewPager slide in the end there will be different levels of shading or drag effect such as:

Here Insert Picture Description

Static settings in the xml file:

<androidx.viewpager.widget.ViewPager
        android:id="@+id/content_pager"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:overScrollMode="never"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/main_indicator" />

Set in a dynamic java file:

 mScrollView.setOverScrollMode(OVER_SCROLL_NEVER);
Released three original articles · won praise 0 · Views 55

Guess you like

Origin blog.csdn.net/wdh1994115/article/details/104535138