我是Android新手我需要从我的应用程序调用网页而不退出我尝试使用此代码:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.es"));
activity.startActivity(intent);
并且不起作用。
感谢帮助!!!
答案 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)
如果您希望在应用中显示网页,则需要创建网页浏览。