这是主要活动的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重新开始。
答案 0 :(得分:0)
尝试这个..
@override
public void onBackPressed(){
super.onBackPressed();
if ( webview.canGoBack()) {
webview.goBack();
}
}