我正在应用程序的注册模块中工作,使用返回TinyURL
与新用户对应的生成的 Web 服务。这TinyUrl
为用户提供了对平台的访问权限,由WebView
.
问题:
该WebView
方法适用于任何 URL,但不适用于 TinyURL
. 在TinyURL
其他浏览器上运行良好。我错过了什么?
Java的定义和配置WebView
:
WebView browser = (WebView) findViewById(R.id.wvBrowser);
WebSettings webSettings = browser.getSettings();
webSettings.setJavaScriptEnabled(true);
webSettings.setAllowContentAccess(true);
browser.setWebViewClient(new WebViewClient());
browser.loadUrl(myTinyUrl);
的 XML 定义WebView
:
<WebView
android:id="@+id/wvBrowser"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
感谢您的时间和帮助。欢迎提出任何建议。