gpt4 book ai didi

java - WebView canGoback() 功能上的 WebView clearHistory()?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:23:37 30 4
gpt4 key购买 nike

  1. 我正在尝试使用历史记录作为退出应用程序的检查。主页按钮将页面重新加载到 google.com,但即使在我调用 .clearHistory() 之后仍然保留页面历史记录。

  2. 这是菜单处理/选择的代码:

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
    // Handle item selection
    switch (item.getItemId()) {
    case R.id.Home:
    mWebview.loadUrl("http://google.com");
    mWebview.clearHistory();
    return true;
    case R.id.About:
    Toast.makeText(this, "TEXT", Toast.LENGTH_SHORT).show();
    return true;
    default:
    return super.onOptionsItemSelected(item);
    }
    }
  3. 这是退出函数的代码:

    @Override
    public void onBackPressed() {
    if (mWebview.canGoBack()) {
    mWebview.goBack();
    }
    else {
    super.onBackPressed();
    }
    }

最佳答案

根据 this post您需要在页面加载完成后调用 clearHistory:

It appears that the history clears everything before the current page so if your browser is at page "A", you clear history and navigate to page "B" your history will be "A" "B", not just "B", but if you clear history when "B" finishes loading you will have only "B"

因此,与其在 loadUrl 之后立即调用 clearHistory,不如从 onPageFinishedonProcessChanged 调用它。

关于java - WebView canGoback() 功能上的 WebView clearHistory()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20150983/

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