我想从我的应用程序中打开一个文本文件启动器。 我有一个byte [] / base64数据,需要根据扩展名在应用中启动。我尝试使用下面的代码启动文本文件,但我无法这样做。有谁可以帮我这个?这是我的代码:
Uri myUri = Uri.parse(mActionResponse.getAttachmentData()); //mActionResponse.getAttachmentData() will return byte []
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setDataAndType(myUri, "text/plain");
context.startActivity(intent);
仅供参考我不想将文件保存在设备存储中。