android - How to implement a CrossProcessCursor compatible generic custom CursorWrapper - Stack Overflow
Other than that nonsense with the default implementation of getBlob throwing UnsupportedOperationException, viz:
// TODO implement getBlob in all cursor types
public byte[] getBlob(int column) {
throw new UnsupportedOperationException("getBlob is not supported");
}
it appears one also has to override fillWindow
android - How to implement a CrossProcessCursor compatible generic custom CursorWrapper - Stack Overflow
// TODO implement getBlob in all cursor types
public byte[] getBlob(int column) {
throw new UnsupportedOperationException("getBlob is not supported");
}
it appears one also has to override fillWindow
android - How to implement a CrossProcessCursor compatible generic custom CursorWrapper - Stack Overflow
Comments