Learn creative coding writing simple programs

42. Programming animated effects on Android phones

This episode is probably only interesting for you if you own an Android phone. We don't discover any new programming tricks but see how easy it is to execute your programs on Android phones. It turns out the Processing editor is already prepared for launching applications on your phone. That means that after you have downloaded the required Android SDK software you can run most of our previous exercises right on the phone with one (SHIFT) click. If you are lucky enough to own one :)

And don't worry! I'm not having a stroke :)

Tags: android, effects, phone

Code editor

You can make changes to the code below. Then

Questions and comments

Try to stay close to the topic of this episode. Use the Processing forums for help with unrelated Processing projects (or hire me for help ;-)

To indicate that a word in your comment is code, use the `backtick`. Example
Do `float` and `int` smell similar?
To highlight code blocks, surround it with ``` code-fences ``` like this:
``` void setup() { size(600, 600); } ```