我想打开带有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"));