如何在不退出应用程序的情况下从android调用网页

时间:2013-08-23 16:00:40

标签: android web

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

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

并且不起作用。

感谢帮助!!!

2 个答案:

答案 0 :(得分: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"
/>

答案 1 :(得分:0)

如果您希望在应用中显示网页,则需要创建网页浏览。

Here is good tutorial