gpt4 book ai didi

android - WebView goback() 重新加载最后一页

转载 作者:太空狗 更新时间:2023-10-29 15:08:54 27 4
gpt4 key购买 nike

这是主要 Activity 的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 重新加载。

最佳答案

试试这个..

@override
public void onBackPressed(){
super.onBackPressed();
if ( webview.canGoBack()) {
webview.goBack();
}
}

关于android - WebView goback() 重新加载最后一页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18879157/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com