The android-music-player tag has no wiki summary.
4
votes
1answer
496 views
Android application will Pause and Resume the music of other music player app, is that possible in Android?
I want to wright an Android application.
Where I am playing different mp3 files With "MediaPlayer" class.
Now User Is playing his/her own music with a default music application.
I want to pause the ...
3
votes
6answers
2k views
How to debug Android native code on a real device
I've got some trouble with the media backend (mostly Stagefrightplayer) in Android, and I'd like to understand why it throws the errors it does. The errors are usually device spesific, so debugging ...
1
vote
1answer
41 views
Orientation change and Android VideoPlayer? What is going on?
I have the following code which searches a text file on my phone's sd card for the url of a song on a webserver.
I am able to shuffle the song by turning the phone to change the orientation and I do ...
1
vote
2answers
376 views
Android background music service
I am developing an entertainment app in android. I want to play background music, and I want to use service for that. App have 3 activities and music must be played across all activities. Also, when ...
1
vote
0answers
152 views
OnAudioFocusChangeListener does not get executed when native player is paused
I have this strange issue when if I play song with custom app player, it works fine when I receive calls OnAudioFocusChangeListener gets called which in turn deos all the appropriate things to lower ...
1
vote
3answers
3k views
Method for launching audio player on Android from web page for streaming media
To link to SHOUTcast/HTTP internet radio streams, traditionally you would link to a playlist file, such as an M3U or PLS. From there, the browser would launch the audio player registered to handle ...
1
vote
2answers
6k views
Android music player source code
I need native(standart) android music player source code. Where i can find it?
0
votes
1answer
26 views
Handel Strange Application flow - Android
I got in to strange problem with the flow of application.I am creating music Playing application, which have capability of background playing. And the problem I am having is,
on application starts ...
0
votes
2answers
35 views
How to use managedQuery from an asyncTask
I am trying to make an Android music player. To make things easier, I have decided to copy the Artists on the phone to a local DB and then make some custom queries to the local data. I know how to ...
0
votes
2answers
31 views
Where to store sound files in the project and what solution to chose for storing refferences to them
I'm making some fancy app which requires lot of short sounds for its use. Got few questions You might be able to answer.
Is there some restriction to the place I store then in the android project? ...
0
votes
2answers
52 views
Make an audio start/stop toggle on Android
I have looked everywhere about music on Android development. I have looked at the API but I didn't understand it. This is my code:
Button b = (Button) findViewById(R.id.button1);
...
0
votes
1answer
50 views
Android app using phone media player [closed]
I want to develop an app that integrates the music player of a phone that runs on Android platform, with social networking accounts like twitter...suggest me where to start from? I think I can be more ...
0
votes
0answers
34 views
How to join Android Media query search suggest
I will explain a little more my scenario.
I'm extending the default music player with other features and informations.
So I've a sqlite db where I store those informations in addiction of the ...
0
votes
2answers
371 views
New Android Music app source code (ICS)
I'm not talking about the old Android Music application source code. I'm talking about the new one with new design.
The old one is not based on Fragment and I think it's very bad written with lack of ...
0
votes
2answers
144 views
Media Player help Android
Application has 7-8 activities, so I have create an application with some background music on all of these activities.
private void playAudio() {
mMediaPlayer = MediaPlayer.create(this, ...
0
votes
1answer
227 views
How do you check if music is playing from a broadcast receiver?
I would like to prevent some of my code from executing only if music or videos are currently playing.
Can you show me code that does this?
Thanks.
Truly,
Emad
0
votes
0answers
64 views
Using Media Button Broadcasts with Samsung's default media player
I built an app using Intent.ACTION_MEDIA_BUTTON to control the current media play, but a customer reported it wasn't working with their Samsung music player. Does anyone know if the Samsung media ...
0
votes
1answer
392 views
Why Media player android not working properly on Samsung Galaxy Tab?
I have right a app, when you move your phone like a Bike race, then it will detect the motion and will choose a random voice of gare and then play it. Its working good on HTC. But when I try to run it ...
0
votes
1answer
207 views
MediaController Play button is not working?
i use the code from the link,
http://androidcookbook.com/Recipe.seam?recipeId=1399
where the media player is use to play the audio, media controller is appear as anchor view of layout, the problem ...
0
votes
0answers
56 views
Process for having a playlist of music files that you can stream & download
I have a group of .mp3 files, a mixtape, hosted on my webserver and I want to create a playlist that streams the files one after another and allows the download of each individual song and allows the ...
0
votes
3answers
610 views
Android - How to stop the music only when home button is pressed
I'm creating a simple game and the same background music is being played throughout its whole life. I'm using a static class to manage my MediaPlayer so the music can continue playing without being ...
0
votes
0answers
2k views
Android, build music app?
I want to build MusicPlayer, using source code of standart android music player(projects / platform/packages/apps/Music). I also renamed the package (for no conflict with emulator app)
When I build ...
0
votes
1answer
2k views
Android native music player search intent
In the stock music player in Android 2.1 (at least), the artist, album, and track name of the currently playing track are long clickable, which brings up a context menu "Search for NN with:", with ...
-2
votes
1answer
152 views
Android: How-To create an app that pulls Album Art?
Where would I get started to create an app that would grab your Album Art based on Album or Artist of the mp3 from the internet (ie. via amazon, play.com, etc..)?
I would likely be using Eclipse.
-2
votes
1answer
159 views
How to check if a music player is installed or not?
I am able to fetch the installed or running app list . Now I want to detect in the list is there any music player app present or not?
public void getRunningProcess() {
...