我正在研究webview
。如果我点击webview
中的任何内容,它会使用webviewclient
类重定向到其他链接。
现在我将页脚包含back
和forward
按钮,以执行普通浏览器中的功能。
我可以为back
的{{1}}和forward
工作。它工作正常。
现在我想在页脚中设置一个按钮,最初应该没有聚焦,它应该可以点击而且不能动态点击。
答案 0 :(得分:7)
我使用canGoBack()
和canGoforward()
解决了这个问题,我们可以使用obj_name.setEnabled(false);
禁用这些按钮。
答案 1 :(得分:1)
如果你的布局像
<?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