0

フレーム レイアウトの下にあるスクロール ビュー内に Web ビューを配置すると、Web ビューのスクロールに問題が発生します。

以下は、私の要件の言及されたレイアウトです

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    tools:context=".WebSampleActivity" >

    <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <ScrollView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" 
            android:id="@+id/scroll_view">

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" 
                android:orientation="vertical">

                  <Button
                      android:id="@+id/button_view"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:text="button" />
                <WebView
                    android:id="@+id/web_view"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:clickable="true"
                    android:focusableInTouchMode="true"
                    android:onClick="true" 
                    />


            </LinearLayout>
        </ScrollView>
    </FrameLayout>

</RelativeLayout>

上記の例では、webview 領域に触れると、コンテンツがレイアウトに配置されたボタンの下にスクロールされます

この問題の処理方法を教えてください。ボタン領域まで移動するためだけにWebビューのコンテンツが必要です

4

1 に答える 1