Quantcast
Channel: How to use intent for choosing file browser to select file - Stack Overflow
Browsing all 5 articles
Browse latest View live

Answer by Nilesh for How to use intent for choosing file browser to select file

It may help you to choose a doc file and u may change action as per your need Intent intent; if (VERSION.SDK_INT >= 19) { intent = new Intent("android.intent.action.OPEN_DOCUMENT");...

View Article



Answer by Renato Martins for How to use intent for choosing file browser to...

this will open the build-in file explorer if available, otherwise will ask u to select a file explorer that u have installed.private void showFileChooser() { Intent intent = new...

View Article

Answer by Dinesh IT for How to use intent for choosing file browser to select...

// check here to KitKat or new version and this will solve the Samsung file explore issue too. boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;if (isKitKat) { Intent intent =...

View Article

Answer by Vyacheslav Shylkin for How to use intent for choosing file browser...

You can use something like this: .... Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("file/*"); startActivityForResult(intent, YOUR_RESULT_CODE); .... But I really doubt that you...

View Article

How to use intent for choosing file browser to select file

How to use intent to prompt user to choose "finish action with" to choosing app to select file (assuming there is a few app to browse file in the device)I want to filter the file using an extension.....

View Article

Browsing all 5 articles
Browse latest View live




Latest Images