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。(我正在使用 addView 方法添加我的 webView)。使用 loadUrl 方法加载 webView。从那个页面,我点击了一个链接,然后在一个对我来说很好的应用程序中打开它。但是当我点击后退按钮时,我的 webview 会重新加载。如果用户返回,我不希望我的 webview 重新加载。

4

1 回答 1

0

试试这个。。

@override
public void onBackPressed(){
 super.onBackPressed();
 if ( webview.canGoBack()) {
 webview.goBack();            
   }
}
于 2013-09-18T18:03:03.020 回答