EX08_03.java
上传用户:vip_99
上传日期:2021-03-27
资源大小:61159k
文件大小:1k
源码类别:

android开发

开发平台:

Java

  1. package irdc.ex08_03;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.webkit.WebView;
  5. public class EX08_03 extends Activity 
  6. {
  7.   private WebView mWebView1; 
  8.   /** Called when the activity is first created. */
  9.   @Override
  10.   public void onCreate(Bundle savedInstanceState) 
  11.   {
  12.     super.onCreate(savedInstanceState);
  13.     setContentView(R.layout.main);
  14.     
  15.     mWebView1 = (WebView) findViewById(R.id.myWebView1);
  16.     /*自行设置WebView要显示的网页内容*/
  17.     mWebView1.
  18.       loadData(
  19.       "<html><body><p>Subscribe to my Blog</p>" +
  20.       "<div class='widget-content'> "+
  21.       "<a href=http://www.wretch.cc/blog/blackoa&rss20=1>" +
  22.       "<img src=http://angelosu.googlepages.com/feeds128.png />" +
  23.       "<a href=http://www.wretch.cc/blog/blackoa>Link Blog</a>" +
  24.       "</body></html>", "text/html", "utf-8");
  25.     }
  26. }