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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T18:47:57+00:00 2026-05-28T18:47:57+00:00

I try use below code to load an URL. URL url = new URL(urlstr);

  • 0

I try use below code to load an URL.

URL url = new URL(urlstr);
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setConnectTimeout(10000);
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setUseCaches(false);
InputStream is = connection.getInputStream();  //spend lots of time

Because the line InputStream is = connection.getInputStream(); will spend some time.
So I want to show a loading dialog while it loading.
I can I do it?

In AActivity, below code to call BActivity.

Intent intent = new Intent(AActivity.this, BActivity.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);  
Window w = MyGroup.group.getLocalActivityManager().startActivity("BActivity", intent);  
View view = w.getDecorView();  
MyGroup.group.setContentView(view);

And BActivity is load URL and extract information.
The load code is in onCreate().

I try the answer code, the error Unable to add window -- token android.app.LocalActivityManager$LocalActivityRecord@2afe9488 is not valid; is your activity running? shows.

  • 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-28T18:47:58+00:00Added an answer on May 28, 2026 at 6:47 pm

    You can achieve with the aysntask showing progress dialog as follows

    In Oncreate :

             new GetTask(this).execute();//taken object for asyntask class.
    
    
    
        class GetTask extends AsyncTask<Object, Void, String> {
         {
            ProgressDialog progressDialog;
           void GetTask(Context cntxt)
          {
    
          }
            @Override
        protected void onPreExecute() {
            super.onPreExecute();
    
            mDialog = new ProgressDialog(cntxt); //taking object for progress dialog
            mDialog.setMessage("Please wait...");
            mDialog.show(); //Displaying progressDialog
        }
    
        @Override
        protected String doInBackground(Object... params) {
    
             //do the background process
    
            return ""; you can return string value
    
        }
    
        @Override
        protected void onPostExecute(String result) {
            super.onPostExecute(result);
    
            if (mDialog != null) {
                mDialog.dismiss();//close the progress Dialog
            }
    
         }
          }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I try to use the code below I get a duplicate variable error
I use this code below to load CSS files. var i, a; for(i=0; (a
I try to use this code for toggling text on the link: var showText=<span>Open</span>
I try to use the following code: ArrayList<String> Map<String, String> Eclipse complains about both
Iam using below code for uploading images on the remote server.When I use below
I'm using the code below to load a text file content into a WebView
I use group for tabhost. In MyGroup, below code to call AActivity: Intent intent
I try to use the domainpeople.com API and to do I need to use
I try to use doctest from example from http://docs.python.org/library/doctest.html But when I run python
I try to use the winDBG to debug a dump file. When I 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.