Android scrollview remove blue light

前端 未结 2 1580
误落风尘
误落风尘 2020-12-15 04:14

When you scroll on Android using scrollview, it generates a blue light the direction you are scrolling in. How would I remove the blue light?

My manifest:

<

相关标签:
2条回答
  • 2020-12-15 04:59

    Add this extra line to your ScrollView definition:

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/sobreScrollView"
        ...
        android:overScrollMode="never"> 
    
    0 讨论(0)
  • 2020-12-15 05:03

    Try adding this to your ScrollView in your layout.xml:

    android:overScrollMode="never"  
    

    or add this to your code:

    findViewById(R.id.sobreScrollView).setOverScrollMode(ScrollView.OVER_SCROLL_NEV‌​ER);
    
    0 讨论(0)
提交回复
热议问题