Codereamp

Results 26 comments of Codereamp

> Meanwhile other dirty methods can be also be possible. For onyx for example we can trigger a refresh in adb like: > adb shell am broadcast -a onyx.android.intent.action.REFRESH_SCREEN Thanks....

Also an observation, in a decompiled source there's a hint how this intent is implemented ```java SystemPropertiesProxy.set(context, "persist.mode.quick", .... -2147483644)); Surface.class.getDeclaredMethod("einkChangeQuickUpdateMode", Integer.TYPE).invoke(... , -2147483644); ``` I saw a similar code...

About the mentioned props it looks like a method of passing data between eink actors. Apart from `persist.mode.quick`, `persist.mode.global`, there's also `persist.mode.sleep`. All contains 0 if I look at their...

> Another thing. I think is not the case here but don't hurt to try double reflection to execute the method: Thanks, funny again, saw this question a couple of...

> Maybe possible to get it with something like so we don't need to refactor the epd method? Great! Googling `[ Getting activity from view ]` reveals many answers similar...

Also I has a question about all other mode when the controller claims "all" support. Sure I can route them to the corresponding decision places in the code, but I...