質問

For example on Samsung

Intent i = new Intent("com.sec.android.app.myfiles.PICK_DATA");
            i.setAction(Intent.ACTION_GET_CONTENT);
            startActivityForResult(i, 0);

you can start the native file manager with the above snippet , but how can I start native file manager on any platform and any device and any android API level ?

役に立ちましたか?

解決

Is it possible to start native file manager in android on any device and platform?

Android does not have a "native file manager". Some devices might ship with some sort of file manager app pre-installed, but that is up to the device manufacturer, and not all devices will have one.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top