加载网页

来源:互联网 发布:spring session源码 编辑:程序博客网 时间:2024/06/10 23:40
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    tools:context="com.example.webview.MainActivity" >    <WebView        android:id="@+id/webview"        android:layout_width="match_parent"        android:layout_height="match_parent" /></RelativeLayout>



权限:

 <uses-permission android:name="android.permission.INTERNET"/>


package com.example.webview;import android.app.Activity;import android.content.Intent;import android.net.Uri;import android.os.Bundle;import android.webkit.WebView;public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);//WebView  vb=(WebView) findViewById(R.id.webview);////vb.loadUrl("http://www.baidu.com");Intent itent=new Intent(Intent.ACTION_VIEW);itent.setData(Uri.parse("http://www.baidu.com"));startActivity(itent);}}





0 0
原创粉丝点击