Namnodorel
Namnodorel
@kennycason Well, this time it was my turn to have other stuff to do - but today, I had time to come back to this and finally implement the performance...
I tested using [RxJavas parallel feature](https://github.com/ReactiveX/RxJava/wiki/Parallel-flows), and I can confirm that being able to make use of the full processor capacity speeds things up significantly. But just slapping RxJava on...
If you desperately want to use it as it is now (which I would not recommend due to the lacking performance on Android), you can use the fork through jitpack.io
@kennycason I'm not sure what exactly you mean by Android-isms - the core logic stays the same, the part that is different is "just" how images are written to. I...
On desktop there is a slight performance impact, I'm guessing due to the usage of reflection. The biggest difference I measured was from PolarWordCloudITest, which took 6.5 seconds longer (30s...
I have a need for a kumo implementation on Android, too :D There are further problems, because Android also doesn't allow some of Javas default file writing interfaces, but I've...
I think it's worth looking at some other implementations of this. For example, [WordCram](https://github.com/danbernier/WordCram/tree/master/src/wordcram) has `WordPlacer`s, which _suggest_ a place to put a word - and if that place doesn't...
@buntyq Not sure if this is still relevant to you, but I ran into the same issue and found the issue: 1. The issue is that the app does not...
I got the same issue
It does make sense when in the flowlayout there are three items, and the third doesn't fit in the row, but there's still some space left. By supporting gravity, this...