论坛首页 入门技术论坛

Eclipse 开发 Android, Hello, WebView (学习6)

浏览 7968 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (12) :: 隐藏帖 (0)
作者 正文
   发表时间:2009-11-20   最后修改:2009-11-20

Hello, WebView

A WebView allows you to create your own web browser Activity. In this tutorial, we'll create a simple Activity that can view web pages.

 

学习地址:http://androidappdocs.appspot.com/guide/tutorials/views/hello-webview.html

 

HelloWebView.java 代码

 

package com.example.test;

import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;

public class HelloWebView extends Activity {

	WebView webview;
	
	/** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        webview = (WebView) findViewById(R.id.webview);
        webview.getSettings().setJavaScriptEnabled(true);
        webview.loadUrl(http://ditu.google.cn);
        
    }
}

 

 

Layout->main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <WebView 
        android:id="@+id/webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
    />

</LinearLayout>

 

执行 Eclipse->HelloWebViewAndroid->Android Application 显示图片如下:

 

 

 

代码下载 HelloWebView.zip

 

 

  • 大小: 129.2 KB
   发表时间:2009-11-24  
谁评的新手贴啊?虽然我不玩Android,但是Android还在起步阶段吧,资料应该是比较少的,发发这种帖子我觉得没什么不好啊
0 请登录后投票
   发表时间:2009-11-27  
public class HelloWebView extends Activity {

	WebView webview;
	
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        webview = (WebView) findViewById(R.id.webview);
        webview.getSettings().setJavaScriptEnabled(true);
        webview.loadData(" <html>  <body>   sssssssssss</body>  </html>  ", "text/html", "utf-8");
        
    }
}

为什么这样写显示不出来
0 请登录后投票
   发表时间:2009-12-03  
feisuzhu 写道
谁评的新手贴啊?虽然我不玩Android,但是Android还在起步阶段吧,资料应该是比较少的,发发这种帖子我觉得没什么不好啊

这样的帖子,网上S一下,一大堆...
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics