# Bleeding edge of technology

**URL:** https://discourse.processing.org/t/bleeding-edge-of-technology/11201
**Category:** Processing for Android
**Created:** [May 13, 2019, 5:38pm UTC](https://discourse.processing.org/t/bleeding-edge-of-technology/11201 "2019-05-13T17:38:19Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![lve0200](https://avatars.discourse-cdn.com/v4/letter/l/aeb1de/32.png) [@lve0200](https://discourse.processing.org/u/lve0200)
#### Post date: [May 13, 2019, 5:38pm UTC](https://discourse.processing.org/t/bleeding-edge-of-technology/11201/1 "2019-05-13T17:38:19Z")

</div>

Hi,  
just to dump my frustration. I don’t know for how long P4Android does exist, but 4me as a beginner its just terrible. Beware, I am an el Engineer, programming since 1976 in Assembler,  
but  
no Debugger, can’t look at Variables or set breakpoints  
sparse documentation and tutorials  
no explanation, how P5 creates Android functionality like activities, Containers, Layouts etc. in the background, etc.

Like this, one can hardly produce something more than “Hello World”.  
Sorry  
hk

---

<div class="post-metadata">

### Author: ![cansik](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/cansik/32/8815_2.png) [@cansik](https://discourse.processing.org/u/cansik)
#### Post date: [May 13, 2019, 6:48pm UTC](https://discourse.processing.org/t/bleeding-edge-of-technology/11201/2 "2019-05-13T18:48:08Z")

</div>

There are examples, references, tutorials and even books to buy:  
[https://android.processing.org/index.html](https://android.processing.org/index.html)

Maybe this helps you a little bit 🙂 And processing can be used as Java library together with IDE’s which offer a debugger (Eclipse, IntelliJ…)

---

<div class="post-metadata">

### Author: ![akenaton](https://avatars.discourse-cdn.com/v4/letter/a/a88e4f/32.png) [@akenaton](https://discourse.processing.org/u/akenaton)
#### Post date: [May 14, 2019, 8:27am UTC](https://discourse.processing.org/t/bleeding-edge-of-technology/11201/3 "2019-05-14T08:27:47Z")

</div>

@lve0200 ===  
in some sense i agree with you and if you are really wanting to work with Android you have now to work with Android Studio; yet

1. as for animations or graphics P5 is very useful ( some kind of library working with AS)
2. if you want to understand what P5 does in the background you can try to export your app and get a look at the generated code: things begin to be more clear, P5 creates an activity then creates a fragment which is added to a frameLayout: so if you want to go further than the helloWorld you have to work with this framelayout and add or remove what you want to it; now also, knowing that you are in a fragment you can create another one and make all what you want with it (but coding in native android)…
