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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:46:12+00:00 2026-05-21T07:46:12+00:00

Whenever I attempt to set content view after dismissing the progress dialog I get

  • 0

Whenever I attempt to set content view after dismissing the progress dialog I get an error like…

04-13 14:40:38.043: WARN/System.err(801): android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
04-13 14:40:38.073: WARN/InputManagerService(59): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@44dde3f0

My code is like…

ProgressDialog dialog = null; //class variable.


dialog = ProgressDialog.show(Login.this, "", 
            "Logging you in. Please wait...", true);
     new Thread() {
         public void run() {
                 try{
                      //serious work here!
                    }
                    dialog.dismiss();
                    setContentView(R.layout.blaa);
                 } catch (Exception e) {
                     e.printStackTrace();
                 }
         }
 }.start();

What’s causing this?

  • 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-21T07:46:13+00:00Added an answer on May 21, 2026 at 7:46 am

    Your Thread are not the UI-thread. I think you need to create a Handler and then post a Runnable to it when you need to switch content view.

    Handler hdl = new Handler(); // Will ron on UI-thread
    
    dialog = ProgressDialog.show(Login.this, "", 
            "Logging you in. Please wait...", true);
    new Thread() {
         public void run() {
                 try{
                      //serious work here!
                    }
                    hdl.post(new Runnable() {
                        public void run() {
                            dialog.dismiss();
                            setContentView(R.layout.blaa);
                        }
                    });
                 } catch (Exception e) {
                     e.printStackTrace();
                 }
         }
    }.start();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get an Class not registered error whenever I attempt to connect to the
I'm getting this error whenever I attempt to declare a class: Parse error: syntax
Whenever I learn a new language/framework, I always make a content management system... I'm
Whenever I attempt to set the default value of an optional parameter to something
For the past hour, whenever I attempt to open a form, an error has
Whenever I attempt to create a wallpost that doesn't have the caption set it
Whenever the tags argument is not empty I get a NotSupportedException: Local sequence cannot
Whenever i try to run sqlmetal, i get this: 'sqlmetal' is not recognized as
Whenever I collapse or open node in the tree view, it jumps up and
I am using hadoop-0.20.203.0rc1.tar.gz for my cluster setup. Whenever I set job.setMapOutputKeyClass(ByteBuffer.class); and run

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.