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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:17:30+00:00 2026-05-26T06:17:30+00:00

When I try to show a working dialog for an asynctask i get the

  • 0

When I try to show a working dialog for an asynctask i get the following errors:
java.lang.reflect.InvocationTargetException
java.lang.NullPointerException

The code of the activity and asynctask is:

public class MainActivity extends Activity {

    private ControlLogin ctlLogin;
    private ProgressDialog dialog;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.login);

        ctlLogin = (ControlLogin)findViewById(R.id.controlLogin);

        ctlLogin.setOnLoginListener(new OnLoginListener()
    {
        @Override
        public void onLogin(String email, String password, Boolean saveAccount){


            ProgressDialog dialog = new ProgressDialog(getApplicationContext());
            dialog.setMessage("Signing...");
            dialog.setIndeterminate(true);
            dialog.setCancelable(false);

            new Login().execute(email, password);
        }
    });



    }

    public class Login extends AsyncTask<String, Float, CloudApp> {

        protected void onPreExecute(){
            dialog.show();
        }
        @Override
        protected CloudApp doInBackground(String... arg0) {
            CloudApp api = new CloudAppImpl(arg0[0], arg0[1]);
            return api;
        }

        protected void onPostExecute(CloudApp api){

            dialog.dismiss();
            try {
                CloudAppAccount acc = api.getAccountDetails();
                Toast toast = Toast.makeText(getBaseContext(), "test: " + acc.getEmail(), Toast.LENGTH_LONG);
                toast.show();
            } catch (CloudAppException e) {
                e.printStackTrace();
            }
        }

    }

}

Any help??? 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-26T06:17:31+00:00Added an answer on May 26, 2026 at 6:17 am

    You are hiding your member dialog in your code by defining a local variable dialog in your onLogin(...) method. Because of this, dialog is never initialized to anything and that is why you get an NPE in your Login class.

        @Override
        public void onLogin(String email, String password, Boolean saveAccount){
    
            //remove the leading ProgessDialog here...it is hiding your member 'dialog'
            //dialog = new ProgressDialog(getApplicationContext());
            ProgressDialog dialog = new ProgressDialog(getApplicationContext());
            dialog.setMessage("Signing...");
            dialog.setIndeterminate(true);
            dialog.setCancelable(false);
    
            new Login().execute(email, password);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I try to execute my code, I'm getting an error dialog: 'Show Disassembly'
It's pretty difficult to show code for ASP.NET here, so I will try my
Try the following code public enum Color { Blue=1, Red=2, Green=3 } public List<Color>
When i'm in onActivityResult and i try to show a custom progress dialog, The
This code isn't working. The loading screen doesn't show, however if I take out
ProgressDialog onClick not working.. here is my code .. Basically i want to show
This compiles: class Ex1 { public int show() { try { int a=10/10; return
iam using setting.bundle and i try to show a hidden picture with Switch toggle
I try to use amazon API using PHP. If I use print_r($parsed_xml->Items->Item->ItemAttributes) it show
Try loading this normal .jpg file in Internet Explorer 6.0. I get an error

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.