How to open a file in the file explorer application

reeka

New member
Hi All ,

I have a file browser application and I had transferred some picures to emulator and I m opening it using following code :

Intent myIntent = new Intent(android.content.Intent.ACTION_VIEW,Uri.parse("file://"+ aDirectory.getAbsolutePath()));
startActivity(myIntent);

but error occus showing : No actvity found to handle (android.content.Intent.ACTION_VIEW) intent

so what can be the solution.. please reply ASAP
 
AndExplorer is a file manager for Android devices. It allows browsing files and folders stored on device and sdcard. It can sort by name, size and date. Copy/Paste, rename, delete, create folder features are available. It is able to uncompress ZIP, GZIP and TAR files too. It can be called from another application through Intent facilities.
 
Back
Top