Robert

Results 15 comments of Robert

So the problem is that the method onSizeChanged(int w, int h, int oldw, int oldh) is invoking the method reset() which in turn starts a new transition. This means, during...

Here is how I changed it, maybe there is a better way? ``` @Override protected void onSizeChanged(int w, int h, int oldw, int oldh) { super.onSizeChanged(w, h, oldw, oldh); //restart();...

Turns out scaling the viewport can result in the aspect ratio not matching which in turn results in a random transition being selected. This does not look good because there...

I have this same problem on macOS 12.6 (21G115) M1. Basically every time I download something from the community the UI freezes. It is consistent and should be easy to...

Just to be clear, I know I can use: `url.replaceAll(" ", "%20");` I'm just concerned if there are any other special characters that are not handled since a full URLEncode...

That encoding should work. But in order to download a file with spaces in the name I need to use: `String l_urlPath = "/remote.php/webdav" + a_remoteFilePath.replaceAll(" ", "%20");` And then:...

Yes I understand space must always be encoded. The question is why do I need to encode them in my code and the library does not do it. For example...

So what I am trying to understand is that since `Uri.encode` already encodes spaces, and the library is calling `Uri.encode`, why do I need to replace the spaces using `replace(...

So I think there is a broader issue here. Say I have a folder on my drive and it is named `folder%20name`, in this case the **%20** is part of...

OK I think now I have understood your answer. When I do ``` NextcloudRequest nextcloudRequest = new NextcloudRequest.Builder() .setMethod("GET") .setUrl(l_urlPath) .build(); ``` It actually needs to be: ``` NextcloudRequest nextcloudRequest...