• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Webview problem

Hi
I have very strange problem when I use web view api

when I use

webView.getSettings().setJavaScriptEnabled(true);
public void onProgressChanged(WebView view, int progress) {
WebViewActivity.this.setProgress(progress * 1000);
}
});
webView.setWebViewClient(new WebViewClient() {
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
Toast.makeText(WebViewActivity.this, "Oh no! " + description, Toast.LENGTH_SHORT).show();
}
});

webView.loadUrl("http://www.ticketlev.co.il/WebTixsNet?configkey=DIZ_Seret&emc=10701");


it disable buttons in the web


if I drop the line of web client it disable the option to use onbackpress

Nadav
 
Back
Top Bottom