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 ?

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top