3

主なアクティビティのxmlコードは次のとおりです..

     <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            android:id="@+id/relativeMain"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            tools:context=".MainActivity" >

        <FrameLayout android:id="@+id/rightMainContent"
            android:background="#ffffff" 
            android:layout_width="match_parent"
            android:layout_height="match_parent"
        >
        </FrameLayout>

        <RelativeLayout android:id="@+id/rel_overlay"
                        android:background="@color/whiteColor"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" >

                <TextView
                    android:id="@+id/txtOverlay"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:layout_toRightOf="@+id/progressOverlay"
                    android:textSize="15sp"
                    android:text="@string/loading" />

                <ProgressBar
                    android:id="@+id/progressOverlay"
                    style="@android:style/Widget.ProgressBar"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginRight="7dp"
                    android:layout_centerVertical="true"
                    android:layout_marginLeft="95dp"
                     />
        </RelativeLayout>
    </RelativeLayout>

Framelayout に webview を追加しています。(webView を追加するために addView メソッドを使用しています) . loadUrl メソッドで webView をロードします。そのページから 1 つのリンクをクリックし、それをアプリ内で開くことができました。しかし、[戻る] ボタンをクリックすると、webview がリロードされます。ユーザーが戻った場合、Web ビューをリロードしたくありません。

4

1 に答える 1