0

我是 Android 新手,我需要从我的应用程序调用网页而不退出我尝试使用以下代码:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.es"));
activity.startActivity(intent);

并且不起作用。

感谢您的帮助!!!

4

2 回答 2

1

在您的 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"
/>
于 2013-08-23T16:15:11.923 回答
0

如果您希望在您的应用程序中显示网页,您将需要创建一个网页视图。

这里有很好的教程

于 2013-08-23T16:14:55.080 回答