Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| lwc:programming:mobile:android:threads:handlers [2022/02/23 14:34] – John Harrison | lwc:programming:mobile:android:threads:handlers [2022/02/23 15:37] (current) – John Harrison | ||
|---|---|---|---|
| Line 109: | Line 109: | ||
| } | } | ||
| </ | </ | ||
| + | | ||
| + | There are examples as yet unexplored of handlers posting runnables. For example, this sort of thing should work according to my brain and not tested by a living breathing compiler: | ||
| + | <code Java> | ||
| + | handler.post(new Runnable() { | ||
| + | @Override | ||
| + | public void run() { | ||
| + | Log.v(" | ||
| + | } | ||
| + | }); | ||
| + | </ | ||
| + | ===== Resources ===== | ||
| + | * https:// | ||
| + | |||