7

我正在研究一个webview. 如果我单击 my 中的任何内容webview,它会通过使用webviewclient类重定向到另一个链接。

现在我放了一个页脚包含backforward按钮,来完成普通浏览器中的功能。

我可以工作到backforwardwebview它工作正常。

现在我想在页脚中设置一个按钮,最初不应该聚焦,它应该可以点击而不是动态点击。

4

2 回答 2

7

canGoBack()我使用and解决了这个问题canGoforward(),我们可以使用 禁用这些按钮obj_name.setEnabled(false);

这是来自 Google 的一个很好的示例,值得一看。

于 2010-02-25T11:29:47.180 回答
4

如果你的布局喜欢

<?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/backButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:enabled="false" 
    android:text="Back"/>

<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" />

现在我们可以像这样实现......

private WebView webView;

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

//Web View Initialization
webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);

//Button Initialization
final Button backButton =(Button) findViewById(R.id.backButton);
final Button forwardButton =(Button) findViewById(R.id.forwardButton);

//Back Button Action
backButton.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {

           // Going back if canGoBack true
           if(webView.canGoBack()){
               webView.goBack();
           }
    }
});
//Forward Button Action
forwardButton.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {
        // Go Forward if canGoForward is frue 

           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 );

        //Make Enable or Disable buttons
        backButton.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("www.google.com");//Your url goes hare
于 2017-08-27T04:47:36.177 回答