[android-beginners] Re: [android-developers] Re: how to start the default music application from my own application

2008-11-13 Thread Payal Amin
never mind i solve the problems. Thanks everybody for your help. Payal On Thu, Nov 13, 2008 at 10:05 AM, Payal Amin [EMAIL PROTECTED] wrote: Hi Peli, One more question, i want to play the songs from the sdcard, and the song which will be played is whatever user selects from sdcard. Can

[android-beginners] Re: Files reading

2008-09-10 Thread Payal Amin
you can try this FileContains = new File(PathName); File[] Filenames = FileContains.listFiles( new FilenameFilter() { public boolean accept(File FileContains, String name) { return name.endsWith(.mp3) || name.endsWith(.MP3); } }); Payal

[android-beginners] Re: problem wid the sdcard

2008-08-29 Thread Payal Amin
I tried file:///sdcard/test.txt too but still it does not work... Do we have to set any permissions or something to open a sdcard file through application? I think we should be able to browse the sdcard files through applications.. because in real phone when we insert an sdcard, we are able to

[android-beginners] Re: problem wid the sdcard

2008-08-29 Thread Payal Amin
Hi Mark, thanks a lot for your reply. now I am able to open and view the txt file using some other file operations.. May be I will make different activity to read the txt file from sdcard. Thanks On Fri, Aug 29, 2008 at 11:36 AM, Mark Murphy [EMAIL PROTECTED]wrote: My question was, if