如何在 android 应用程序中 运行 我的 Web 应用程序的网页
How can I run the web page of my web application in an android application
我通过 html5 和 php 创建了一个 android 应用程序,现在我将此 Web 应用程序转换为 android 应用程序并设置了 url 地址在我的 java 代码中如下
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
mWebView.loadUrl("http://localhost/OacaApp/Interface.html");
mWebView.setWebViewClient(new HelloWebViewClient());
这是我想从我的 android 应用程序中看到的应用程序界面
但是当我 运行 模拟器时,我得到了这个
http://i.stack.imgur.com/64Wlr.png
谁能帮我解决这个问题,因为当我从模拟器 运行 我的浏览器可以访问互联网时
您正在尝试通过 'localhost' 运行 它,这就像您的 phone 正在托管该网站一样。输入 public IP 并打开端口,或者切换到虚拟主机。此外,服务器的本地 IP 应该有效 (192.168.1.xxx)
我通过 html5 和 php 创建了一个 android 应用程序,现在我将此 Web 应用程序转换为 android 应用程序并设置了 url 地址在我的 java 代码中如下
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
mWebView.loadUrl("http://localhost/OacaApp/Interface.html");
mWebView.setWebViewClient(new HelloWebViewClient());
这是我想从我的 android 应用程序中看到的应用程序界面 但是当我 运行 模拟器时,我得到了这个
http://i.stack.imgur.com/64Wlr.png
谁能帮我解决这个问题,因为当我从模拟器 运行 我的浏览器可以访问互联网时
您正在尝试通过 'localhost' 运行 它,这就像您的 phone 正在托管该网站一样。输入 public IP 并打开端口,或者切换到虚拟主机。此外,服务器的本地 IP 应该有效 (192.168.1.xxx)