[android-developers] Re: error in opening file in fileexplorer application

2008-11-21 Thread Charlie Collins
I believe you will need to go back to the code you got from anddev.org and check that manifest. As far as I know file://STRING is NOT a scheme/uri that any built in system intent can handle, that's a custom Uri, so you are going to have to write the Activity that handles that on your own (which

[android-developers] Re: error in opening file in fileexplorer application

2008-11-20 Thread Charlie Collins
I am not familiar with that particular application, but it looks like you need the Intent and IntentFilter setup correctly for the action action=android.intent.action.VIEW data=file:///sdcard/1.txt. Sorry if that's obvious, but does your manifest have a filter for that action, which specifies

[android-developers] Re: error in opening file in fileexplorer application

2008-11-20 Thread Asif k
Hi All, anyone is aware of which intent filters are nedded in manifest.xml On Nov 20, 6:13 pm, Charlie Collins [EMAIL PROTECTED] wrote: I am not familiar with that particular application, but it looks like you need the Intent and IntentFilter setup correctly for the action