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

  • Home
  • SEARCH
  • 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 9165535
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T14:56:00+00:00 2026-06-17T14:56:00+00:00

I would like to implement a ListView that is automatically updated with any changes

  • 0

I would like to implement a ListView that is automatically updated with any changes to the local db (Observer Pattern). I have read that Loaders and ContentProviders do not play nicely with greenDAO as of now, so I would like to know the recommended approach?

  • 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-06-17T14:56:01+00:00Added an answer on June 17, 2026 at 2:56 pm

    you can add your own listener (observer or propertychangeListener) like I do here for updating a listView when add or delete something :

    public static Object objj = new Object();
    static PropertyChangeSupport pcs = null ;
    private static PropertyChangeSupport getPropertyChangeSupport(){
    
        if(pcs==null){
            pcs = new PropertyChangeSupport(objj);
        }
    
        return pcs;
    
    }
    
    public void addTrace(Traces Trace){
        DevOpenHelper helper = new DaoMaster.DevOpenHelper(context, "pib", null);
        SQLiteDatabase db = helper.getReadableDatabase();
        DaoMaster daoMaster = new DaoMaster(db);
        DaoSession daoSession = daoMaster.newSession();
        TracesDao DAO1= daoSession.getTracesDao(); 
        DAO1.insert(Trace);
        getPropertyChangeSupport().firePropertyChange("addTrace", 0, Trace);
    
    }
    

    this above can be done in database controller …
    in the class where my listView is I intercept the event like this:

    public class ListFragment extends Fragment implements PropertyChangeListener { 
           public void propertyChange(PropertyChangeEvent evt) {
               if (evt.getPropertyName().equals("addTrace")) {
                    final Traces tempTrace = (Traces) evt.getNewValue();
                    listTraces = DoaConroler.ListTraces();
                    showBriefingActivity.runOnUiThread(new Runnable() {
    
                        @Override
                        public void run() {
                            createListBriefing();
                            // fillListItem(tempTrace);
                        adapterFirstLevel.notifyDataSetChanged();
    
                    }
                });
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a WPF App that implements a ListView. I would like to show
We would like to implement a web form that automatically saves content at regular
Currently I have a ListView (using the Details View). I would like to implement
I would like to implement a function with R that removes repeated characters in
I have a class MyListView, it inherits from ASP.NET ListView. I would like to
I would like to implement an ListView similar to one form the iPhone. The
I would like to implement onfling (or some similar swipe) in listview in each
I have a ko.computed() function that proxies a collection like this: function ListView(query) {
I would like to implement a click listener for the CheckBoxes of a ListView
I would like to implement the delete functionality in listview. I want it to

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.