Android scrollview remove blue light

前端 未结 2 1590
误落风尘
误落风尘 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 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);
    

提交回复
热议问题