String url = "<html><body>hello World</body></html>"; Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url)); startActivity(i);
如何在浏览器中加载 HTML 源代码?请举例说明。
android android-intent
android ×1
android-intent ×1