Android CustomTabsIntent如何在assets文件夹中打开html文件

时间:2017-02-20 05:40:36

标签: android

我想打开带有CustomTabsIntent的assets文件夹中的html文件,但是在调用之后,它只显示Toast并说:"无法显示PDF(无法打开「index.html」)"

如何使用CustomTabsIntent打开html文件?

CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
builder.enableUrlBarHiding();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.intent.setType("text/html");
customTabsIntent.launchUrl(this, Uri.parse("file:///android_asset/index.html"));

0 个答案:

没有答案