Questions tagged [android-music-player]

623 questions
-1
votes
1 answer

not getting song files in my app after using flutter audioQuery

I've tried every thing to get songfiles on my app but it still shows nothing, here is my code below: import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import…
-1
votes
2 answers

I want to add online music streaming to an existing android local music player

I have developed an android music player app. That Play music from local storage I would like to add online streaming options like Spotify,Gana. Etc.... Im not a professional android developer I've developed the app based on other music player…
-1
votes
1 answer

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.
ToddN
  • 2,901
  • 14
  • 56
  • 96
-1
votes
1 answer

How to play music even if the app closes?

I am creating a media player in android studio and wants to play the music continue after the app closes. Code of service class is below: public class myBackgroundService extends Service { MediaPlayer mediaPlayer; public myBackgroundService()…
Tabish
  • 105
  • 2
  • 8
-1
votes
1 answer

Need to make custom seekbar for music player

I want to make a seekbar like the one in the figure for a music player project I'm working on. Searched everywhere could not find anything helpful, any help will be appreciated
Balu B
  • 13
  • 1
  • 2
-1
votes
3 answers

How to receive JSON data from recyclerView to another activity

I'm making a Music Player app. Songs are fetched from JSON url and I have a recyclerView to display the data. Now clicking on the recyclerView another music player activity launches and starts playing the song. Here is the problem, clicking on the…
-1
votes
1 answer

Mobile music app (integrating a music player) first in android and ios later

I am a student android developer whose annual project is to develop a music application integrating a music player. my concerns are as follows: Do you have any basic projects (especially those that already incorporate a music player or template) on…
-1
votes
5 answers

How to click an item of recyclerView and go to another recyclerView that contains the details of the clicked item?

I'm building a music app and I have an "Album" fragment which displays the song's album cover in RecyclerView. What I want is when I click on any of these items(album cover), I should be taken to another activity (albumsDetails.java) that contains…
-1
votes
2 answers

How to implement onClickListener for button (in MainActivity) to play and pause Songs from fragment?

I'm building a music player and I have a songs.java fragment that displays all the songs from SD card into the recyclerView. When I click any of the song the it starts playing. The problem is, I also have a sliding up panel layout…
Sebin Paul
  • 169
  • 1
  • 15
-1
votes
1 answer

Music service is started but song is not playing

I had created music player service which stop automatically on back pressed. I want to set it continuously until songs are available or user manually close from notification window. Any help appreciated. Here below i put some code which i had…
-1
votes
1 answer

RemoteControlClient putbitmap() crashes the app

In my mediaplayer app, if the user continuously skip the songs the app crashes and am getting the following error android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:923)  …
KH_AJU
  • 109
  • 2
  • 18
-1
votes
1 answer

How to get all .mp3 files from raw folder to custom array listview and play that song?

I am developing one app that can play .mp3 file.So,In this app i have created one custom listview adapter for populating the .mp3 files from raw folder to listview and created one model class and in my raw folder i have 20 .mp3 files.So, I want to…
-1
votes
1 answer

Android Universal Music Player how its work

I am curious about google sample github respository https://github.com/googlesamples/android-UniversalMusicPlayer android universal music player are not using MediaPlayer or ExoPlayer to stream audio file from url. What exact method that they use in…
-1
votes
1 answer

how to use Picasso to set image from mp3 files

i am currently working on musicplayer. I want to laod my mp3 file imageArt using Picasso. But the main problem is how can i get that imageArt and set to picasso.
-1
votes
1 answer

Playing songs with android fragment

I'm new to fragments and I have built a simple app which can play mp3. So I have one FragmentActivity containing TabFragments. One TabFragment is a ListFragment which contains a list of songs, and the other one is a Fragment which displays the music…