Android scrollview 去除蓝光
Posted
技术标签:
【中文标题】Android scrollview 去除蓝光【英文标题】:Android scrollview remove blue light 【发布时间】:2012-12-21 10:10:42 【问题描述】:当您在 android 上使用 scrollview 滚动时,它会在您滚动的方向上生成蓝光。如何移除蓝光?
我的清单:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/sobreScrollView"
android:layout_
android:layout_
android:cacheColorHint="@android:color/transparent"
android:scrollingCache="false"
android:fadingEdge="none"
android:fadingEdgeLength="0dp"
android:scrollbars="none"
android:scrollbarStyle="insideOverlay"
>
<LinearLayout
android:id="@+id/contentSobre"
android:layout_
android:layout_
android:orientation="vertical" >
Java 源代码:
package com.my.app.section;
import android.content.Context;
import android.util.AttributeSet;
import com.my.app.BaseSection;
import com.my.app.R;
public class SobreSection extends BaseSection
public SobreSection(Context context, AttributeSet attrs, int defStyle)
super(context, attrs, defStyle);
public SobreSection(Context context, AttributeSet attrs)
super(context, attrs);
public SobreSection(Context context)
super(context);
@Override
protected void onFinishInflate()
// TODO Auto-generated method stub
super.onFinishInflate();
findViewById(R.id.sobreScrollView).setVerticalFadingEdgeEnabled(false);
findViewById(R.id.sobreScrollView).setVerticalScrollBarEnabled(false);
【问题讨论】:
请更准确地描述您的问题,您想要蓝色叠加层还是不想要它? 滚动视图结束时我不想要蓝光 【参考方案1】:尝试在 layout.xml 中将其添加到 ScrollView:
android:overScrollMode="never"
或将其添加到您的代码中:
findViewById(R.id.sobreScrollView).setOverScrollMode(ScrollView.OVER_SCROLL_NEVER);
【讨论】:
return 此行有多个标记 - OVER_SCROLL_NEVER 无法解析或不是字段 - 视图无法解析为变量 糟糕,它在类 ScrollView 中,所以它是:ScrollView.OVER_SCROLL_NEVER
:)
这(至少是 XML 版本)也适用于 viewPager
!【参考方案2】:
将此额外的行添加到您的 ScrollView
定义中:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/sobreScrollView"
...
android:overScrollMode="never">
【讨论】:
返回错误:在包'android'中找不到属性'overScrollMode'的资源标识符 它是在 API 级别 9 中添加的。因此,您需要使用比您当前使用的 SDK 更高版本的 SDK(9 或更高版本)。以上是关于Android scrollview 去除蓝光的主要内容,如果未能解决你的问题,请参考以下文章
android ScrollView+GridView GridView不滚动