Rikard Teodorsson
Rikard Teodorsson
> I think that's how it's supposed to work, count the total of the query, to you know how many pages with skip/limit you can navigate. In your case, you...
A value between 0 and 100 :)
If you tell me what file(s) to edit, I could not figure it out yesterday :)
Yes but if I do that swiping/zooming/double tap no longer works
Yes but only ACTION_DOWN events. Adding a `GestureDetector` and `onSingleTapConfirmed` does not work
Ok, I got it to work by setting the on touch listener on the root layout instead of the ImageView :) ``` GestureDetector gestureDetector = new GestureDetector(this, new GestureDetector.SimpleOnGestureListener() {...
It seems like it is difficult to permanently delete/shred files on Android: https://security.stackexchange.com/a/185627 https://stackoverflow.com/a/38518260/7232269 Maybe the best way is to not use the disk cache at all and only read...
The problem with hiding the folders that contain files encrypted using a different key is that you need to store a relation between the encryption key and those folders (e.g....
Yes, but that would require trying to decrypt every file in the folder, it will be very slow if you have a lot of files
> I have been creating folders with the app, but the folder names are _never_ encrypted. File names are, but never folder names. > > I was going to file...