Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.setDataAndType(uri, "text/html");
File file = new File(uri.getPath());
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_BROWSABLE);
context.startActivity(intent);
URI是
file:///data/user/0/com.carmate.crashreporter/files/crashResult.html
浏览器也使用正确的 URI 正确打开,但是,它什么也没显示