效果就是把一段HTML的字符串,转化成能够在界面上显示的网页: <WebView android:id="@+id/mail_open_html" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/mail_open_body" android:paddingRight="5.0dip" android:text="Mail HTML this is a HTML." /> 在程序中: //得到WebView组件 WebView bodyHtml=(WebView)envelope.findViewById(R.id.mail_open_html); //能够的调用JavaScript代码 bodyHtml.getSettings().setJavaScriptEnabled(true); //加载HTML字符串进行显示 bodyHtml.loadData(<html>这是一段HTML的代码</html>, "text/html", "utf-8"); 如果存在中文乱码,请在服务端解决(html里面设置编码)