打开默认文件管理器并重命名 android 中的文件

Open Default File Manager and rename file in android

我想以编程方式启动默认文件管理器来显示文件夹的内容,我想删除或重命名文件。

当我运行 android app.It 只显示文件夹的内容,但不能重命名文件。

我该怎么做?

我正在使用此代码。

openButton.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
  Intent intent = new Intent();
  intent.setAction(Intent.ACTION_GET_CONTENT);
  intent.setType("file/*");
  startActivity(intent);
}
}

谢谢

I want to programatically launch a default file manager

许多 Android 设备上没有 "default file manager"。除了启动器图标的 MAIN/LAUNCHER 之外,不要求任何文件管理器响应来自第三方应用程序的任何特定 Intent 结构。并且不要求任何应用程序允许用户重命名 ACTION_GET_CONTENT activity.

中的任何内容

您需要自己实现所需的功能,也许需要 one of these libraries 的帮助。