基本的にインライン 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);
今もプログラムで設定しています。