ScrollView滑动的时候去除边上的阴影

来源:互联网 发布:sqlserver清空数据库 编辑:程序博客网 时间:2024/06/10 23:29
ScrollView对应的XML布局中增加下面的属性就可以实现:
android:fadingEdge="none"
例如:
<ScrollView 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:fadingEdge="none">

0 0
原创粉丝点击