[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
a file? Can you please help me with this... Thanks, On Thu, Aug 28, 2008 at 4:23 PM, Megha Joshi [EMAIL PROTECTED] wrote: 2008/8/28 Amin [EMAIL PROTECTED] I have added some text files in my sdcard image using adb push . What I am trying to do is making a file browser for sdcard. and I

[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

[android-beginners] Re: problem wid the sdcard

2008-08-28 Thread Amin
I have added some text files in my sdcard image using adb push . What I am trying to do is making a file browser for sdcard. and I can see all the folders and files i created in my sdcard img through my application. Now what i want is, I want to view that text files in my application. Can