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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T06:56:54+00:00 2026-05-16T06:56:54+00:00

I am reading a few thousand items out of a database in my Android

  • 0

I am reading a few thousand items out of a database in my Android app and want to show a loading dialog, start a thread and read the database then close the dialog and then populate a listview with the data.
I cant seem to figure this out.

I have the dialog pop up and disappear but I don’t know how to populate the listview after the thread is done.

Any ideas?

  • 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-16T06:56:54+00:00Added an answer on May 16, 2026 at 6:56 am

    Use an AsyncTask, populate the listview in onPostExecute().

    http://www.screaming-penguin.com/node/7746

    private class InsertDataTask extends AsyncTask<Void, Void, Void> {
    
      private final ProgressDialog dialog = new ProgressDialog(Main.this);
    
      // can use UI thread here
      protected void onPreExecute() {
         this.dialog.setMessage("Inserting data...");
         this.dialog.show();
      }
      // automatically done on worker thread (separate from UI thread)
      protected Void doInBackground(final String... args) {
         //do something in background, i.e. loading data
         return null;
      }
    
      // can use UI thread here
      protected void onPostExecute(final Void unused) {
         if (this.dialog.isShowing()) {
            this.dialog.dismiss();
         }
         // populate list here
      }
    }
    

    …

    new InsertDataTask ().execute();
    

    Also helpful:
    http://developer.android.com/resources/articles/painless-threading.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to show custom animation in my ProgressDialog . After reading few posts,
After reading a few enlightening articles about memory in the .NET technology, Out of
I've been trying out NDepend , been reading a few blogposts about it and
After reading a few question/answers here I have managed to work out how to
After reading a few articles about Android configuration, I still don't know how to
I have been working on an Android app and I want to display a
What is Lazy Loading? [Edit after reading a few answers] Why do people use
Reading a few threads ( common concurrency problems , volatile keyword , memory model
I was reading a few articles on salts and password hashes and a few
I have a few questions about this after reading the iPhone documentation on it:

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.