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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T13:46:04+00:00 2026-06-05T13:46:04+00:00

I have a method setup that takes about 3-5 seconds to run (because it

  • 0

I have a method setup that takes about 3-5 seconds to run (because it does something online) and I would like to show a loading dialog, but I cant figure out how to do it, I tried starting the loading dialod before I called the method then tried to dismiss it right after like this:

dialog.show();
myMethod();
dialog.cancel();

But that didn’t work, does anyone have any suggestions?

  • 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-05T13:46:05+00:00Added an answer on June 5, 2026 at 1:46 pm

    AsyncTask is my Favouite but you may use Handlers too 🙂

    Invest your time to go through this nice blog.

    Below snippet will help you.

        package org.sample;
    
        import android.app.Activity;
        import android.app.ProgressDialog;
        import android.os.Bundle;
        import android.os.Handler;
    
        public class Hello extends Activity {
    
            private Handler handler;
            private ProgressDialog dialog;
    
            @Override
            protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
    
                dialog = new ProgressDialog(this);
                dialog.setMessage("Please Wait!!");
                dialog.setCancelable(false);
                dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
                dialog.show();
    
                new Thread() {
                    public void run() {
                        // Do operation here.
                        // ...
                        // ...
                        // and then mark handler to notify to main thread 
                        // to  remove  progressbar
                        //
                        // handler.sendEmptyMessage(0);
                        //
                        // Or if you want to access UI elements here then
                        //
                        // runOnUiThread(new Runnable() {
                        //
                        //     public void run() {
                        //         Now here you can interact 
                        //         with ui elemements.
                        //
                        //     }
                        // });
                    }
                }.start();
    
                handler = new Handler() {
                    public void handleMessage(android.os.Message msg) {
                        dialog.dismiss();
                    };
                };
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Setup: I have a COM DLL that calls a method inside a managed C#
I have a method that takes in an id, a start date, and and
I have a method set up that uses jquery form for a file upload
I have a setup where I perform my http requests in the doInBackground() method
I have method in a class that I need to make sure is only
I've got some 3rd party beans that have method signatures that fit quite well
I have a test setup where I have many very similar unit tests that
I'd like to implement a custom TabLayoutPanel which would automatically setup the tab itself
I have an object that reads data from an Excel file using, which takes
I have a query about the following web.config setup and Elmah. The problem is

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.