I tried to run file browser application. I got code from this site . I have - I cannot open files. I think it happens because I have to set right mime type to Intent. BTW this code don't work:
- Code: Select all
Intent i = new Intent(android.content.Intent.ACTION_VIEW );
i.setData(Uri.parse("file://" + file.getAbsolutePath()));
startActivity(i);
Can anybody explain me how fix this problem?


