Yu Sun

Results 5 comments of Yu Sun

@kingstone59 In `SvgShader.calculate`, calls `shapePath.addPath(path, pathMatrix);` instead of `shapePath.transform(path, pathMatrix);`. That'll help!

@kingstone59 Yes, I fixed the bug and put it as a library locally instead of remote dependency. Locate the `calculate` method of class `SvgShader`, and call `shapePath.addPath(borderPath, pathMatrix);` instead of...

Refer to this post: https://groups.google.com/forum/#!msg/android-developers/eTxV4KPy1G4/tAe2zUPCjMcJ Add a method `addPath` in PathInfo: ``` java public void addPath(Path dst, Matrix matrix) { dst.addPath(path, matrix); } ``` Also I paste the code for...

My issue is similar to bmarty except I want the section header to be clickable instead of the items when they are behind that section header.

I owe you a big thank, Jimi. Recently I am working on an app that requires this pinned header feature and I found flaws with your library. But after reporting...