Android不常用代码(1)

阅读更多
目录

1:Webview
2:js交互




1:Webview 除了浏览器根本不会用到

String url = etAddress.getText().toString();
		if (URLUtil.isNetworkUrl(url))
			webView.loadUrl(url);
		else
			Toast.makeText(this, "输入的网址不正确.", Toast.LENGTH_LONG).show();




2:js交互附带一个js交互的Demo
webView.loadDataWithBaseURL(null, startRandomMoveJavascript,
				"text/html", "utf-8", null);
  • JavascriptDemo.zip (1002.1 KB)
  • 下载次数: 0

你可能感兴趣的:(android)