User login



Syndicate content
Add to Google


MusicDroid - Audio Player Part I

SDK Version: 
M3

Introduction

As you can imagine a popular way to load music onto a cell phone will be via removable storage, such as an SD card. In part 1 of our media player tutorial we will build a simple media player that will allow the user to select a song from the SD card and play it.

Click here if you would like to download the source for this tutorial.

Note: there is a known issue with the Emulator where the mixer will cut in and out on some systems resulting in very choppy audio, hopefully this will be addressed in the next SDK release.

Layouts

This project only consists of one Activity, a ListActivity. So, for a ListActivity we need a ListView for the actual list, and another view that will be used for each item in the list. You can get fancy, but for this example we will just use a TextView to display the name of each file.

First, here is our ListView (songlist.xml):

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.         android:orientation="vertical"
  4.         android:layout_width="fill_parent"
  5.         android:layout_height="fill_parent">
  6.  
  7.     <ListView id="@id/android:list"
  8.               android:layout_width="fill_parent"
  9.               android:layout_height="fill_parent"
  10.               android:layout_weight="1"
  11.               android:drawSelectorOnTop="false"/>
  12.  
  13.     <TextView id="@id/android:empty"
  14.               android:layout_width="fill_parent"
  15.               android:layout_height="fill_parent"
  16.               android:text="No songs found on SD Card."/>
  17. </LinearLayout>

Very standard ListView. The TextView entry will display when there are no items in the ListView because it's using the built-in id of "@id/android:empty".

And for each file here is the TextView to be used (song_item.xml):

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TextView id="@+id/text1" xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_width="wrap_content"
  4.     android:layout_height="wrap_content"/>

Again, very basic, shouldn't be anything you haven't seen before.

You may be thinking, why does the screenshot above show a black ListView, when nothing in these layouts mentions color? Well, that is determined by the "theme" in the AndroidManifest.xml. In the "application" element you can define the theme by adding "android:theme="@android:style/Theme.Dark"".

The ListActivity

We now must work on our ListActivity which we will call MusicDroid. Here is the declaration of this class and it's onCreate() function:

  1. public class MusicDroid extends ListActivity {
  2.  
  3.     private static final String MEDIA_PATH = new String("/sdcard/");
  4.     private List<String> songs = new ArrayList<String>();
  5.     private MediaPlayer mp = new MediaPlayer();
  6.     private int currentPosition = 0;
  7.  
  8.     @Override
  9.     public void onCreate(Bundle icicle) {
  10.         super.onCreate(icicle);
  11.         setContentView(R.layout.songlist);
  12.         updateSongList();
  13.     }

First we set up some private member variables to be used by this Activity. The first one is MEDIA_PATH, and we set it to "/sdcard" because that is the location of the SD card. Next comes a List of Strings that will hold the filename for each song on the list. And of course we need a MediaPlayer object, which we call mp. The final one up there is currentPosition, which we will use to store the index of the song currently playing.

The onCreate() function is pretty basic, we set our view to be the songlist view that we created above and call the function updateSongList(), here is that function:

  1. public void updateSongList() {
  2.     File home = new File(MEDIA_PATH);
  3.     if (home.listFiles(new Mp3Filter()).length > 0) {
  4.         for (File file : home.listFiles(new Mp3Filter())) {
  5.             songs.add(file.getName());
  6.         }
  7.  
  8.         ArrayAdapter<String> songList = new ArrayAdapter<String>(this,
  9.                 R.layout.song_item, songs);
  10.         setListAdapter(songList);
  11.     }
  12. }

Here we create a File Object called "home" which points to "/sdcard". We loop through the files returned by home.ListFiles(), adding each file to our List object "songs". Once we have this list filled we create an ArrayAdapter passing in the songs list and then set it to be our ListActivity's ListAdapter on line 47. This will populate our ListView.

You may have noticed the object above called "Mp3Filter". This is an object that implements FilenameFilter. This object is used to filter out what files should be returned, this is done by implementing the accept(File, String) function. Here is the object that we can use to filter so that listFiles() only returns MP3 files:

  1. class Mp3Filter implements FilenameFilter {
  2.     public boolean accept(File dir, String name) {
  3.         return (name.endsWith(".mp3"));
  4.     }
  5. }

Now we should be able to build a list of all the MP3 files in /sdcard. So now we just need to be able to select a song and play it. Fist things first, let's override onListItemClick() so we will be notified when a song is clicked on:

  1. @Override
  2. protected void onListItemClick(ListView l, View v, int position, long id) {
  3.     currentPosition = position;
  4.     playSong(MEDIA_PATH + songs.get(position));
  5. }

Pretty basic function here. We set currentPosition to hold the index of the position that was clicked on and then pass in the path of the song to playSong(String), so lets take a look at what's happening in playSong(String):

  1. private void playSong(String songPath) {
  2.     try {
  3.  
  4.         mp.reset();
  5.         mp.setDataSource(songPath);
  6.         mp.prepare();
  7.         mp.start();
  8.  
  9.         // Setup listener so next song starts automatically
  10.         mp.setOnCompletionListener(new OnCompletionListener() {
  11.  
  12.             public void onCompletion(MediaPlayer arg0) {
  13.                 nextSong();
  14.             }
  15.  
  16.         });
  17.  
  18.     } catch (IOException e) {
  19.         Log.v(getString(R.string.app_name), e.getMessage());
  20.     }
  21. }

The MediaPlayer object makes things really easy for us here. First we call mp.reset(), which will reset the MediaPlayer to its normal state. This is required if you were playing a song and want to change the data source. The reset() function will also stop whatever is playing, so if a song is playing and then you select another it will stop that one before starting the next song.

We then pass in the path to the song to mp.setDataSource(String) and call prepare() and start(). At this point the MediaPlayer will start playing your song.

Next job is to setup an OnCompletionListener starting on line 66. The function onCompletion(MediaPlayer) will be called when the song is over. All we do there is call the function nextSong() from our Activity. Here is nextSong():

  1. private void nextSong() {
  2.     if (++currentPosition >= songs.size()) {
  3.         // Last song, just reset currentPosition
  4.         currentPosition = 0;
  5.     } else {
  6.         // Play next song
  7.         playSong(MEDIA_PATH + songs.get(currentPosition));
  8.     }
  9. }

Here we check to make sure this isn't the last song on the list, if it is we won't do anything, if not we'll play the next song using the playSong(String) function.

So that's it for the code, on the next page we'll figure out how to get this thing running...

Comments

Submitted by kill on Wed, 07/01/2009 - 01:08.

IT IS very good Tiffany Jewellery Tiffany

Submitted by orange on Fri, 06/12/2009 - 18:49.

The good resource is informative and actual.very good.Gucci Fall Winter handbag

Submitted by realturk on Wed, 04/22/2009 - 07:58.
Submitted by dede on Tue, 06/16/2009 - 04:07.

________________________________________________________
Video Converter for Mac

Submitted by ysnozcn on Wed, 04/22/2009 - 04:24.

ilaçlama haşere ilaçlama böcek ilaçlama ilaçlama hizmetleri

ilaçlama | http://www.sanaldev.net > joomla tema | kalorifer böceği

Submitted by ysnozcn on Wed, 04/22/2009 - 04:20.

ilaçlama böcek ilaçlama haşere ilaçlama ilaçlama hizmetleri

İlaçlama | Böcek ilaçlama | pire

Submitted by aamert on Mon, 03/16/2009 - 19:34.

thanks sohbet chat

Submitted by delta0x on Tue, 02/24/2009 - 07:35.
Submitted by sunrise on Sun, 01/18/2009 - 11:07.

Hi I am writing a file browser for sd card.

------------

dark air jordan

Submitted by youtube video converter (not verified) on Sun, 08/31/2008 - 22:18.

good players

Submitted by Anonymous (not verified) on Sun, 07/20/2008 - 19:12.

Hi Hobbs,

I did a crude fix for MusicDroid so that i can run it in android M5. I mainly fixed the method calls and xml tags so that they match the ones in M5. There are some null text appearing on the screen and i didn't look into them, but I can play mp3 files with it. would you like my crude update so that others can use it?

Kevin

Submitted by rojasmilein on Sun, 03/22/2009 - 06:01.

can u please send me the crude crude updates.thank you

Submitted by elad on Sun, 08/31/2008 - 20:10.

Could you send the apk file to me ?
thanks

Submitted by hobbs on Tue, 07/22/2008 - 08:37.

Hey Kevin,

Thanks for in the info. If you want to contact me via the "Contact" link on the top I'll email you so we can get your fixes up for this tutorial! I've been very busy with the ADC still, but would love to get some of these updated for M5.

Thanks,
Zach

Submitted by Anonymous (not verified) on Sun, 07/20/2008 - 22:12.

Hi Kevin,

I guess that most users are very interested in the m5 update!

You may post the main changes, i guess there are not a lot beside the layout (id).

Best regards!

Submitted by bertoldo (not verified) on Wed, 07/16/2008 - 16:15.

thx a lot, u explained all very precise.

Submitted by Anonymous (not verified) on Tue, 05/27/2008 - 01:22.

Thank you for the code.
I am very new to Android.
I am working for the similar type of work for images.
Can anybody plz explain the simulation of SD card on Android phone?
I am having problem with this. Its not working properly at my end.
It is giving Application Error:

An error occurered in **.**.** (Name of the activity)
Unabel to start activity
ComponentInfo{aaplication name};
null pointer Exception

thanks in advance

Submitted by AJ_nechcl (not verified) on Wed, 05/14/2008 - 04:55.

This tutorial is gr8 as it explains the steps very nicely...very helpful for beginners like me:)

Submitted by Aibtus (not verified) on Fri, 04/11/2008 - 03:50.

This is a good tutorial. The best I have had so far.

Anyone with Java experience and a keen eye for the new platform can follow and understand this. I am Grateful to the author.

Now I understand how Android works. We need more of such

Submitted by idealsoh on Sun, 12/07/2008 - 01:11.

ideal Sikiş
Sesli Sikiş

google amca sik ßunları :D:D

Submitted by dede on Tue, 06/16/2009 - 04:07.

sdf ssdf

Submitted by Zoder (not verified) on Tue, 02/26/2008 - 08:50.

First of all, thanks for this Tutorial!

Just a comment on the layout file. With the new SDK (m5-rc14) i think that id= should be replaced with android:id= but i haven't tested yet if it still works correctly with id=

Greetz
Zoder

Submitted by hobbs on Tue, 02/26/2008 - 11:31.

Yep, unfortunately the MusicDroid tutorials are still for M3...maybe I'll have time to update them all after April 14 :)

Submitted by wyh0079 (not verified) on Sat, 02/09/2008 - 02:11.

it is very helpful for me to lean android.media.. thanksss.

Submitted by Anonymous (not verified) on Thu, 08/28/2008 - 13:36.

Hi I am writing a file browser for sd card. And i want to open the files ( any kind of files like text file, word file...) whenever user click on it. Can anyone suggest me how can I do this..

Thanks