我有一个活动,它基本上只是一个加载一些内联HTML的WebView,当用户滚动时我希望边缘渐变。我知道这并不复杂,而且我还在使用ListViews等一系列其他活动,但我似乎无法解决这个问题。
以下是活动的XML:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="5dp"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="5dp"
android:requiresFadingEdge="vertical"
android:scrollbarStyle="outsideOverlay"
android:scrollbars="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<WebView
android:id="@+id/browser"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
</ScrollView>
如果有人能指出我正确的方向,我会很感激。我对所有(建设性的)想法持开放态度。
哦,我现在也以编程方式设置((ScrollView)findViewById(R.id.scrollview)).setVerticalFadingEdgeEnabled(true);
。
答案 0 :(得分:0)
奇怪,但是,这就解决了我的问题:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/transparent"
android:orientation="vertical"
android:paddingBottom="5dp"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="5dp"
android:scrollbarStyle="outsideOverlay"
android:scrollbars="vertical" >
<WebView
android:id="@+id/browser"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/transparent" />
</ScrollView>