I'm trying to implement something similar to Facebook Chat Heads. I'm using Android Studio to build an Android Application with the OpenGL library.
OpenGL is neccessary because I need full controll about the timing of a visual component I want to display. I'm just not sure if there is a possibility to show something similar like a TextView outside of my app? I.e., to overlay other apps in a similar manner to the Facebook Chat Heads?
What would be the right way to implement a textbox which could be displayed out of the app, like on home screen, using OpenGL? Would be much appreciated if someone could give me a hint, because I did'nt find a way to make the overlay visible while being controlled from within my application.
Disclaimer: I already tried this using a TextView
and a Handler
with postDelayed()
, but I couldn't control the timings as exact as I need them to be.