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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T18:30:16+00:00 2026-05-24T18:30:16+00:00

I am trying to fill my list view in android (using my own adapter)

  • 0

I am trying to fill my list view in android (using my own adapter)
with some data returned by a thread, which gets some xml content from a website.
This works properly!

The List View is filled correctly with the returned Array List object.
Thats the way I do it:

//.. function name blabla
        ll_wait.setVisibility(View.VISIBLE); // A List View object displaying 'please wait'
        lv1=(ListView)findViewById(R.id.listView1);
        TextView tv1 = (TextView)findViewById(R.id.tv_Status);
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
        String sortierung = prefs.getString("pref_sortierung", "Entfernung");
        String distanz = prefs.getString("pref_distance", "10");
        refreshElements refresh = new refreshElements(lat, lon, sortierung, distanz); // its a thread
        refresh.start();
        while(refresh.isAlive()) {
         // HERE IS MY PROBLEM
         // HERE IS MY PROBLEM
         // HERE IS MY PROBLEM
         // HERE IS MY PROBLEM
        }
        try {
            // assigning some data, works correctly
            column_names = refresh.getElementColumn(1);
            // assigning some data, works correctly
            EfficientAdapter adapter = new EfficientAdapter(getApplicationContext());
            lv1.setAdapter(adapter);
        } catch (Exception e) {
            Toast.makeText(getApplicationContext(), e.getMessage() + e.getLocalizedMessage() + e.hashCode() + e.getCause() + e.toString(), Toast.LENGTH_SHORT).show();
        }
        dialog.dismiss();
        ll_wait.setVisibility(View.GONE);
// -... end of function

As you can see, in my code, there is a comment saying “HERE IS MY PROBLEM”.
Of course the main thread waits (as a result of while(){…}) due the refresh thread isn’t
alive anymore and has been finished.
And thats the point! My complete thread is freezing during the operation! I’ve tried to move the listView Adapter stuff into a second, seperate thread… But it says that no list view adapter can be set out of the main thread.
After the freezing (sometimes the application crashes… timeout i dunno) the data will be assigned to some statics, which were used in my own EfficientAdapter.

Is it possible to wait for the data of the Thread A (refresh thread) and using the returned Array List as a list view content WITHOUT freezing the whole application?

I’ll hope you got the point, because I am from germany and my english is not perfect.

  • 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-24T18:30:18+00:00Added an answer on May 24, 2026 at 6:30 pm

    Yes, it’s possible.You can use AsyncTask, which is part of the Android SDK, to accomplish that.

    1. In doInBackground() you build your arraylist.

    2. In onProgressUpdate() you can update results on UI thread during processing. (this method is executed on the UI thread).

    3. In onPostExecute() you are in the stage after finishing the process, and you can post results to the UI (this method is executed on the UI thread)

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

Sidebar

Related Questions

I'm trying to fill some data from an xml feed we made into my
I'm trying to implement a list using the ListView, which contains rows built with
I am trying to fill object[] with List<string> but I cannot figure out how
I am trying to fill a table with JSON data. When I run the
I am trying to fill gridpanel to get data from database through LINQ in
I have an Android activity that displays a list of log entries (using a
I am trying to get text of list view item. And I am making
I'm trying to add a ProgressBar to my row.xml view but I can't seem
I'm trying to create a separator line in my android view. The setup I
I am trying to create a simple program which displays a shopping cart list

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.