我想用html查看器應用程序打開本地html文件。
我用下面的代碼來做到這一點:用html查看器應用程序打開html
MimeTypeMap mime = MimeTypeMap.getSingleton();
String mimetype = mime.getMimeTypeFromExtension("html");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(HTML File), mimetype);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
但這會彈出選擇器包含HTML編輯應用程序。
我只想顯示html閱讀器應用程序。
我該怎麼做?
嘗試做「text/html的」在setdataandtype方法第二個參數 –
mimetype與「text/html」相同。 – brian
您是否安裝了html查看器應用程序? –