从概念上讲,我要做的是将资源uri(引用我的内容提供商(CP))从我的应用程序(A)发送到文本编辑器应用程序(B)(用户选择),以便文本编辑器将uri作为文本流访问,并具有编辑和保存文件的能力。从文本编辑器(B)返回一些通知是可取的,但我可以使用CP来了解"写入"例如。
意图和CP是否支持这种级别的互动?
基本上,我不想在我的应用程序中编写自己的文本编辑器 - 我的应用程序管理数据(通过内容提供商)和文本编辑器操作。
也许将数据发送到临时外部存储位置并将文件路径发送到编辑器 - 但这似乎比需要的更复杂。
答案 0 :(得分:0)
好吧,我最终使用了FileProvider类并浏览了支持文档,得到了以下代码。不是我最初打算做的事情,但概念上结果是相同的(用户按下按钮 - 编辑文件/保存 - 用户返回应用程序):
(在AndroidManifest.xml>
中 <provider
android:name="android.support.v4.content.FileProvider"
android:authorities="my.package.name.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
并在res / xml / file_paths.xml中:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="notes" path="notes/"/>
</paths>
并在按钮监听器中(用户希望看到/编辑他们的笔记):
private class AddNoteListener implements View.OnClickListener {
@Override
public void onClick(View v) {
File notesPath = new File(context.getFilesDir(), "notes");
if (notesPath.exists() == false) {
notesPath.mkdir();
}
File newFile = new File(notesPath, "my_note.txt");
try {
if (newFile.exists() == false) {
newFile.createNewFile();
}
Uri contentUri = FileProvider.getUriForFile(context, "my.package.name.fileprovider", newFile);
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setDataAndType(contentUri, "text/plain");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
List<ResolveInfo> resInfoList = context.getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
for (ResolveInfo resolveInfo : resInfoList) {
String packageName = resolveInfo.activityInfo.packageName;
context.grantUriPermission(packageName, contentUri, Intent.FLAG_GRANT_WRITE_URI_PERMISSION | Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
context.startActivity(Intent.createChooser(intent,"Title"));
} catch (IOException ioe) {
e.printStackTrace();
}
}
}
参考文献: