UriMatcher ignores the query string (anything after "in Uri"). The content provider must handle the parameters between slashes if you want to use this class. For instance:
sUriMatcher.addURI("com.mycompany.data", "group/*", ...); sUriMatcher.addURI("com.mycompany.data", "office/*", ...); sUriMatcher.addURI("com.mycompany.data", "group/*/office/*", ...);
source share