Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
首先,我是一名网络开发人员,我对移动应用程序了解不多,所以我没有更好的词来解释我的问题,但这就是我想要的。
如果您想打开他们的默认浏览器到您的网站,可以通过使用意图来实现:
Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse("http://example.com")); startActivity(i);
但最好将您的网站包含在 web 视图中,以更好地使用正在部署到设备的应用程序。
http://developer.android.com/guide/webapps/webview.html
您可以在网站http://developer.android.com/reference/android/webkit/WebView.html的 url/主机名中使用 WebView 和硬编码