I\'m creating ContentProvider which is a proxy of another ContentProvider (for security issues and to give access to part of functionality of full app).
public
As far as I know you can't unwrap the Cursor because the wrapper class is private (it could be possible using reflections but the SecurityManager won't allow it probably) but you could try to create your own wrapper which implements CrossProcessCursor, wraps the returned cursor and is returned by your ContentProvider.