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

  • Home
  • SEARCH
  • 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 4266382
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T06:45:10+00:00 2026-05-21T06:45:10+00:00

I am developing a soundboard application which extends ListActivity. I have a play button

  • 0

I am developing a soundboard application which extends ListActivity. I have a play button image and the text next to it. Now when the user clicks on a textview, I change the play image to pause image using the following code.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
  try
    {
    setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, Sounds));
     final ListView lv = getListView();
     lv.setTextFilterEnabled(true);
     lv.setCacheColorHint(Color.WHITE);
     lv.setSoundEffectsEnabled(false);
     lv.setFastScrollEnabled(true);
     lv.setFocusableInTouchMode(true);
     lv.setBackgroundColor(Color.WHITE);
  lv.setOnItemClickListener(new OnItemClickListener() {
    public void onItemClick(AdapterView<?> parent, View view,
           int position, long id) {
          TextView tv1 = (TextView) view;
           int u = (int)meMap.get(position+1); // meMap--> HashMap which contains corresponding resids
           playSample(u,tv1);

       }
     });    
}
private void playSample(int resid,TextView ttvv)
{
final Resources res = getBaseContext().getResources();
    final Drawable myImage = res.getDrawable(R.drawable.pause);
  //  myImage.
    final Drawable myImage1 = res.getDrawable(R.drawable.play);

    MediaPlayer.OnCompletionListener listener = new MediaPlayer.OnCompletionListener(){
  public void onCompletion(MediaPlayer mp) {
 // tv --> (TextView) view; From onItemClick(AdapterView<?> parent, View view,int position, long id)
     tv.setCompoundDrawablesWithIntrinsicBounds(myImage1, null, null, null);

      }
    };

This code works, but with a small error which I noted. Suppose if I select third row in my list, the play image changes to pause image and if I scroll my list while it is playing, I can see that the third row of the second scroll page, the third row of the third scroll page and so on gets affected i.e they also change to pause image. Why is this happening? Am I doing something wrong? I hope you understand my question. Your help is appreciated. 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-21T06:45:11+00:00Added an answer on May 21, 2026 at 6:45 am

    I have a similar UI (play/pause in a list view). I avoided the issues you are talking about by using ToggleButtons in my list view and setting the background to an xml drawable like this:
    Create a file drawable/play_pause_toggle.xml:

    <?xml version="1.0" encoding="utf-8"?>
     <selector xmlns:android="http://schemas.android.com/apk/res/android">
         <item android:state_enabled="false"
               android:drawable="@drawable/pause"/>
         <item android:state_checked="true" 
               android:drawable="@drawable/pause" />
         <item android:state_focused="true"
               android:drawable="@drawable/pause" />
         <item android:drawable="@drawable/play" />
     </selector>
    

    Then set your ToggleButton background to @drawable/play_pause_toggle. It will change automatically each time the ToggleButtons isChecked state changes

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

Sidebar

Related Questions

When developing a new web based application which version of html should you aim
Developing a .NET WinForms application: how can I check if the window is in
Developing a heavily XML-based Java-application, I recently encountered an interesting problem on Ubuntu Linux.
When developing a desktop application in .NET, is it possible to not require the
When developing whether its Web or Desktop at which point should a developer switch
When developing an application that sends out notification email messages, what are the best
Developing a project of mine I realize I have a need for some level
Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart
Developing a web application that I've registered with Twitter. In this app, I might
When developing on BlackBerry or iOS, you can deploy your application just by dropping

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.