Question

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 ?

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top