Feeder icon indicating copy to clipboard operation
Feeder copied to clipboard

CursorLoaders not updated?

Open peter-tackage opened this issue 11 years ago • 0 comments

Am I correct in saying that when objects are created/update etc via the ContentManager/DatabaseHelper (see below), that any CursorLoaders that are associated with the corresponding ContentProvider URI aren't informed of the change in content? They only seem to operate correctly when created via the ContentProvider.

// Creates a Channel using the ContentManager: no content provider private Channel createChannel(String url, SyndFeed feed, byte[] icon) { Channel channel = new Channel(-1, url, feed.getTitle(), icon, feed.getLink(), feed.getDescription(), feed.getLanguage(), new byte[] {}); cm.createChannel(channel); // <---- No content URI, so content provider can't inform registered Cursors return channel; }

peter-tackage avatar Mar 15 '13 15:03 peter-tackage