Good evening, can someone explain how, after using Content Provider to insert new rows into the database, force CursorLoader to make a new query?

    1 answer 1

    When inserting in the insert method, the provider should be called:

    getContext().getContentResolver().notifyChange(uri, null)

    It should automatically update CursorLoader