I'm not sure if this question has been addressed before. It might be one that is quite basic. But, I was wondering, is it possible to overlay 2D graphics using Java on the camera view? Where would the code have to be inserted?
Sure, you can do this. You will probably want to overlay your own views on top of the GL view. Be sure to do this after this call in the ImageTargets.java file:
addContentView(mGlView, new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.FILL_PARENT));
Sure, you can do this. You will probably want to overlay your own views on top of the GL view. Be sure to do this after this call in the ImageTargets.java file:
- Kim