gpt4 book ai didi

android webview 前进按钮

转载 作者:太空宇宙 更新时间:2023-11-03 13:37:43 29 4
gpt4 key购买 nike

我想知道如何在 android 的私有(private)浏览器中禁用和启用前进菜单按钮。我正在编写一个显示 3 个 webview 的应用程序,我想合并 android 自己的浏览器选项的基本功能。一切正常截至目前 w.r.t 功能。唯一的问题是“前进”菜单项始终处于启用状态。我也提到了 if canGoFwd 然后 goFwd 的条件。问题是,我单独定义了菜单项并单独编写了转发功能,问题是动态更改“转发”按钮的状态

最佳答案

private WebView webView;

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);

webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
final Button previousButton =(Button) findViewById(R.id.previousButton);

previousButton.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub

if(webView.canGoBack()){
webView.goBack();
}
}
});
final Button forwardButton =(Button) findViewById(R.id.forwardButton);

forwardButton.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub

if(webView.canGoForward()){
webView.goForward();
}
}
});
webView.setWebViewClient( new WebViewClient() {



@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
// TODO Auto-generated method stub
super.onPageStarted(view, url, favicon);
}

@Override
public void onPageFinished( WebView view, String url ) {

super.onPageFinished(webView, url );

previousButton.setEnabled(view.canGoBack());
forwardButton.setEnabled(view.canGoForward());

}

@Override
public void onReceivedError( WebView view, int errorCode, String description, String failingUrl ) {

super.onReceivedError( webView, errorCode, description, failingUrl );
Toast.makeText( WebViewActivity.this, description, Toast.LENGTH_LONG );
}
} );
webView.loadUrl("");

webview.xml文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

<Button
android:id="@+id/previousButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:enabled="false"
android:text="previous"/>

<Button
android:id="@+id/forwardButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/previousButton"
android:text="forward"
android:enabled="false" />
</RelativeLayout>

关于android webview 前进按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4785273/

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