문제

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