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

The Archive Base Latest Questions

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

I have an android activity that consists of a List View and a Text

  • 0

I have an android activity that consists of a List View and a Text View. The Text view displays information about the summed contents of the list view, if the items in the list view are updated then the Text View needs to reflect the change.

Sort of like an observer pattern but with one component reflecting the changes of many rather than the other way round.

The tasks are displayed as items in the list view and the progress can be updated using a seekbar to set the new progress level.

The following method populates the TextView so I need to call this again from inside the SeekBar onStopTrackingProgress Listener.

private void populateOverviewText() {
TextView overview = (TextView) findViewById(R.id.TaskOverview);

if (!taskArrayList.isEmpty()) {

    int completion = 0;
    try {
    completion = taskHandler.getProjectCompletion();
    overview.setText("Project Completion = " + completion);
    } catch (ProjectManagementException e) {
    Log.d("Exception getting Tasks List from project",
        e.getMessage());
    }
}

}

I realise if I want to call the method from the List Adapter then I’ll need to make the method accessible but I’m not sure the best approach to do 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-30T19:13:18+00:00Added an answer on May 30, 2026 at 7:13 pm

    Using DataSetObserver

    I was looking for a solution that didn’t involve altering the adapter code, so the adapter could be reused in other situations.

    I acheived this using a DataSetObserver

    The code for creating the Observer is incredibly straight forward, I simply add a call to the method which updates the TextView inside the onChanged() method.

    Attaching the Observer (Added to Activity displaying list)

        final TaskAdapter taskAdapter = new TaskAdapter(this, R.id.list, taskArrayList);
    
        /* Observer */
        final DataSetObserver observer = new DataSetObserver() {
            @Override
            public void onChanged() {
                populateOverviewText();
            }
        };
    
        taskAdapter.registerDataSetObserver(observer);
    

    Firing the OnChanged Method (Added to the SeekBar Listener inside the adapter)

        public void onStopTrackingTouch(SeekBar seekBar) {
        int progress = seekBar.getProgress();
        int task_id = (Integer) seekBar.getTag();
    
        TaskHandler taskHandler = new TaskHandler(DBAdapter
            .getDBAdapterInstance(getContext()));
    
        taskHandler.updateTaskProgress(task_id, progress);
    
        mList.get(position).setProgress(progress);
    
    
        //need to fire an update to the activity
        notifyDataSetChanged();
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Android application that displays a list of names using checkboxes. I
I have an Android app that consists of an activity and a service. Currently
We have an Android app that consists of about 20 activities. Whenever there is
I have one android activity which extends ListActivity. Every time list items is pressed
I have an Android activity that gets a list of files from a directory
I have an android activity that downloads content from the web. The activity have
So I have a very simple android activity that starts a timer when you
I have an android application that launches a child Activity under certain situations. Both
I have an Android activity with a list. Each item can be clicked and
I have an activity that extends ListView. I populate my list with the results

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.