Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6124613
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:09:10+00:00 2026-05-23T16:09:10+00:00

I currently have a listview and when you click on an item it takes

  • 0

I currently have a listview and when you click on an item it takes you to a new window and starts playing the song associated to that position. The problem is when I press the back button to return to the listview and I press the same item, the music starts playing again, over what is already playing. Is there anyway to fix this, so that when you click on the same item and that song is playing, it won’t replay the song? Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T16:09:10+00:00Added an answer on May 23, 2026 at 4:09 pm

    Have a look at this article about creating a service to play music. Looks like what you are trying to do.

    The other thing you could do is add a function that stops the music when the activies onPause or onStop methods are called. Then the inactive music playing activies will get destroyed by the android OS in its own good time, and you wont have to worry about having multiple music files playing. The down side to this method is that you will only have music playing while the new window is visible. If you change windows, it will halt because the onPause or onStop method will be called. If you want the music to play in the background, I think you need to use the service technique.

    To start the service, you can bind to it with an intent or use the startService method.

    For example, in the article linked above, the service is started here:

    public class MusicDroid extends ListActivity {
        public static final String MEDIA_PATH = new String("/sdcard/");
        private List<String> songs = new ArrayList<String>();
        private MDSInterface mpInterface;
    
        @Override
        public void onCreate(Bundle icicle) {
            super.onCreate(icicle);
            setContentView(R.layout.songlist);
            this.bindService(new Intent(MusicDroid.this,MDService.class),
                null, mConnection, Context.BIND_AUTO_CREATE); // <- starting service by creating a binding.
        }
    }
    

    The official Android Services api page should give you a good overview of how to deal with services.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have a listview and when you click on an item it runs
I have problem with the get the listview item when click listitem. I Got
So I have a listview that is displaying correctly. When the item is turned
I currently have a custom listview with two rows of text in each item,
I have listview with some listadapter after click on item from list I'd like
I currently have a custom listview where each item on the list contains two
I'm currently facing a problem with background drawables on ListView Items. I have a
I have ListView with about 30 items. When I click on an item, some
I have a ListView with ContextMenu on each ListViewItem that has Click event, how
I am currently implementing a ListView populated with CheckedTextViews and have everything working just

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.