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 8131391
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T09:04:47+00:00 2026-06-06T09:04:47+00:00

I know the title is somewhat confusing, my problem is this: I want to

  • 0

I know the title is somewhat confusing, my problem is this: I want to “pause” my program multiple times (via a loop) using sleep(ms) and make changes to several buttons that the user has pressed. I understand that changes to the UI can only be made in the main thread, so I am wondering how to convert this code into an Async task. I also remember reading somewhere that Async task can only be called once? If this is so, what other solutions could I look into?

View.OnClickListener SimulateButtonHandler = new View.OnClickListener() {
        @Override
        public void onClick(View v) {

        for(int j=0;j<169;j++) //169 buttons to click
        {
            if(ClickedPoints[j]!=null) //how I keep track of which buttons has clicked
            {       //clear button color
                Drawable d2 = ClickedPoints[j].getBackground();  
                ClickedPoints[j].invalidateDrawable(d2);  
                d2.clearColorFilter();
            }

        }

        Timer timer = new Timer();

        for(int i=0;i<169;i++)
        {
            if(ClickedPoints[i]!=null)
            {       //change the color after some time
                Simulate(timer, i);
                //clear color again
                Drawable d2 = ClickedPoints[i].getBackground();  
                ClickedPoints[i].invalidateDrawable(d2);  
                d2.clearColorFilter();

            }

        }
}   
};

public void Simulate(Timer timer, final int index)
{
    timer.schedule(new TimerTask()
    {
        public void run() {
            Sim(index);
        }

    }, 1000); //delay for some amount of time, then rehighlight the button
}

private void Sim(int i)
{
    Drawable d1 = ClickedPoints[i].getBackground();  
    PorterDuffColorFilter filter = new PorterDuffColorFilter(Color.RED, PorterDuff.Mode.SRC_ATOP);  
    d1.setColorFilter(filter);
}
  • 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-06-06T09:04:49+00:00Added an answer on June 6, 2026 at 9:04 am

    You’d be better off using a Thread to run your background work (and pausing) and a Handler to access the UI thread.

    Here’s a good tutorial on using handlers with threads.

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

Sidebar

Related Questions

I know the title of this post is somewhat confusing, but I could not
I know the title isn't very elaborate, but I have tried this multiple times
I know the title may seem strange but this is what I want to
I know the title of this question is a bit confusing, but here it
I didn't really know how to formulate the title. But this is my problem.
I know title is a bit confusing ;D but basically what I want to
I don't know which title I should use for this question. I have a
i don't know good title but heres the explain i have this link <a
i didn't really know how to title this question, but here's a thing that
Somewhat misleading title, I know. Never actually wanted to store TimeZoneInfo object themselves: rather,

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.