我试过这个
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
String pathFlash = getExternalFilesDir(null).getAbsolutePath() + File.separator + "flash/1.swf";
File file = new File(pathFlash);
intent.setDataAndType(Uri.fromFile(file), "flash/*");
startActivity(intent);
但它使应用程序崩溃,因为 android 无法找到播放 flash 文件的适当活动。
我还有其他方法可以在 google tv 设备上播放 flash 文件吗?