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.
我是 Android 新手,我需要从我的应用程序调用网页而不退出我尝试使用以下代码:
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("http://www.google.es")); activity.startActivity(intent);
并且不起作用。
感谢您的帮助!!!
在您的 xml 布局文件中,使用 WebView
<WebView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/webView1" android:layout_width="fill_parent" android:layout_height="fill_parent" />
如果您希望在您的应用程序中显示网页,您将需要创建一个网页视图。
这里有很好的教程