iAmMONK

Results 3 comments of iAmMONK

``` observer = new FlowContentObserver(BuildConfig.APPLICATION_ID + ".authority"); observer.setNotifyAllUris(false); observer.addModelChangeListener((table, action, primaryKeyValues) -> { /// This part is executed multiple times }); ``` I need to get the table name where...

Basically what I need to achieve is whenever we add or modify a row, I need to get the table name and rowId to push it to the server. What...

@agrosner I've just tried to use DirectModelNotifier but anyway it's executed twice(still better than previously). But I didn't try to put multiple listeners(for each table). I've just put a log...