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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:36:11+00:00 2026-05-27T03:36:11+00:00

i have a function To run messages in a queue. But when I run

  • 0

i have a function To run messages in a queue. But when I run this the last handler gets executed only, not the first one! Help!

void functionShow()
    {

        button.setVisibility(View.INVISIBLE);
        txt.setText("Generating Unique ID ... Please Wait ");

        Handler handler = new Handler();
        handler.postDelayed(new Runnable() { 
            public void run() { 
                txt.setText("Sending SMS ... Please Wait");       
            } 
       }, 10000); 


        Handler handler1 = new Handler();
        handler1.postDelayed(new Runnable () {
            public void run()
            {
                txt.setText("Done");
            }
        }, 10000);



    }

All i am trying to do is: First text should come as “Generating Unique ID … ” Then after 10 secs “Sending SMS … ” Then again after 10 secs “Done”

  • 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-27T03:36:12+00:00Added an answer on May 27, 2026 at 3:36 am

    Both have the same delay… I guess the first one is being executed and a couple of milliseconds after that the second one is executed; so it looks like the second one is the only that is being executed.

    The ugly way:

        Handler handler = new Handler();
        handler.postDelayed(new Runnable() { 
            public void run() { 
                txt.setText("Sending SMS ... Please Wait");
                postDelayed(new Runnable () {
                    public void run(){
                        txt.setText("Done");
                    }
                }, 10000);
            } 
        }, 10000);
    

    The cool way:

    private static final int SENDING = 1;
    private static final int DONE = 2;
    Handler handler = new Handler(){
        public void handleMessage(Message msg){
            switch(msg.what){
                case SENDING:
                    txt.setText("Sending SMS");
                    sendEmptyMessageDelayed(DONE, 10000);
                    break;
                case DONE:
                    txt.setText("Done");
                    break;
            }
        }
    };
    handler.sendEmptyMessageDelayed(SENDING, 10000);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I only want this function to run if .toolbar li does not have the
I have a function i would like to run onChange. This works fine with
I have written the following function but it's isn't returning anything when I run
I have a function which requires to be run in STA apartment state. I
I have a function that is side-effect free. I would like to run it
gcc 4.4.2 c89 I have a function that has to run (config_relays). It make
I have a Flex client application. I need a clean up function to run
I have problem with fancybox. I want to write a function that will run
I have a C# application, and I want to run a function which is
So I have a TimerTask task calling a function onTimerComplete() in its run() onTimerComplete()

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.