如何使用意图加载静态 html 字符串?
以下代码会导致运行时错误:
public void onClick(View v)
{
String html = "<html><pre>this is text</pre></html>";
Uri uri = Uri.parse( html );
startActivity( new Intent( Intent.ACTION_VIEW, uri ) );