Connor Flaat

Results 21 comments of Connor Flaat

Setting a boolean so it runs once has fixed it, but I'm not sure what the side effects are: listView.getViewTreeObserver().addOnGlobalLayoutListener( new ViewTreeObserver.OnGlobalLayoutListener() { boolean haveRan = false; ``` @Override public...

Thanks for the info @bkhall. I will try and test this soon as currently I have went away from using it completely. Will hopefully create a sample that isolates everything...

This is working as expected as the computeScrollY literally gets the view from getView and then calculates the height for each view among other things. It should only happen once...

@relan that's unfortunate. Thanks for the quick reply though.

Maybe this helps someone else but I ended up with my desired behavior by adding: `os.fsync(fdst)` after each os.write call. This effectively writes the data each loop iteration like I...

I'm attempting to narrow this down to a minimal sample that reproduces it but figured I'd give some info that might be related or might not. I have a translation...

Okay I've finally figured out this issue. Any time I try and access a QObject that's passed into Python I can have it crash. It's not every time though. I'm...

I get the error even if changing the last line in RtspClient.java. My addheaders() method: private String addHeaders() { return "CSeq: " + (++mCSeq) + "\r\n" + "Content-Length: 0\r\n" +...

Same results here using the current build even with on-head detection enabled.

I was hoping to do exactly that @kdietze3.