Android中显示html文件要用Html.fromHtml(...)处理过的返回值,返回值能够成为setText()的参数。php
只显示带文本的html能够用下面的方法处理html文件。html
public static Spanned fromHtml (String source)
显示带图片的html要用下面的方法处理html文件。android
public static Spanned fromHtml (String source, Html.ImageGetter p_w_picpathGetter, Html.TagHandler tagHandler)
ImageGetter 为处理html中<img>的处理器,生成Drawable对象并返回。 web
建立ImageGetter 主要实现下面的方法,source为<img>标签中src属性的值。浏览器
public Drawable getDrawable(String source)
下例为在TextView和EditView中显示html,并插入图片。ide
下图只显示html文字,点击按钮会在TextView和EditView文本后添加图片。this
public class AndroidTest2Activity extends Activity { /** Called when the activity is first created. */ TextView tv; EditText et; Button addPic; String ct; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); et=(EditText) this.findViewById(R.id.editText1); tv=(TextView) this.findViewById(R.id.tv); ct="aaa<font color=\"red\">aaa</font>"; addPic=(Button) this.findViewById(R.id.AddPic); addPic.setOnClickListener(new OnClickListener(){ @Override public void onClick(View arg0) { // TODO Auto-generated method stub ct+="<img src=\""+R.drawable.icon+"\"/>"; refreshView(); } }); refreshView(); } private void refreshView(){ et.setText(Html.fromHtml(ct,p_w_picpathGetter,null)); tv.setText(Html.fromHtml(ct,p_w_picpathGetter,null)); } ImageGetter p_w_picpathGetter = new ImageGetter() { @Override public Drawable getDrawable(String source) { int id = Integer.parseInt(source); Drawable d = getResources().getDrawable(id); d.setBounds(0, 0, d.getIntrinsicWidth(), d .getIntrinsicHeight()); return d; } };
}
1.跳转到浏览器直接访问页面,这段代码是在Activity中拷贝来的,因此有startActivity()方法url
Uri uri = Uri.parse("http://www.baidu.com"); //要连接的地址spa
Intent intent = new Intent(Intent.ACTION_VIEW, uri);.net
startActivity(intent);
2.使用TextView显示HTML方法
TextView text1 = (TextView)findViewById(R.id.TextView02);
text1.setText(Html.fromHtml(“<font size='20'>网页内容</font>”));
3.直接使用android中自带的显示网页组件WebView
webview = (WebView) findViewById(R.id.WebView01);
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl("http://www.baidu.com");
本文经两篇合并而成
http://www.iteedu.com/handset/android/spannablediary/showhtmlp_w_picpath.php