Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to implement an audio player for Android using MediaPlayer And MediaController?

I want to create an Android application that is a client for an Internet radio station. And I want it look native to Android? But im confused with Android API logic and documentation. What i've got is that I need MediaPlayer and MediaController classes. Am I right, and is there any good example of AUDIO player for Android?

Especially, I'm very interested how to use MediaPlayer and MediaController classes together.

UPD:

Finally I've got the code, that does exactly what I want:

Intent i = new Intent(Intent.ACTION_VIEW);    
Uri u = Uri.parse(%file_uri%));    
i.setData(u);    
startActivity(i);
like image 841
Nick Mitin Avatar asked Feb 08 '10 09:02

Nick Mitin


1 Answers

you can look at those links :

http://www.helloandroid.com/tutorials/musicdroid-audio-player-part-i

Hope it will help.

[EDIT]

You have also some example on the official android developer website :

http://developer.android.com/guide/topics/media/index.html

like image 154
Michaël Avatar answered Sep 30 '22 06:09

Michaël