How to create an interface with a 3D tag for Android

enter image description here

In this layout, the image rotates when you touch the mouse, and also highlights the front name in large print, and when you click on it, the following activity is displayed.

How do I create this on Android?

enter image description here

+3
source share
1 answer

One of the following options is possible:

  • Create an invisible sphere. The vertices of the sphere are calculated as positions for labels, but not drawn. You can find the sphere algorithm in several answers in SO, for example here .
  • Attach the tags to different points on the sphere, each tag always facing the camera.
  • Rotate a sphere based on a custom drag effect
  • Put out words based on z.
  • , .

SurfaceView, GLSurfaceView OpenGL. SurfaceView, , , /, .

- Android.

+5

All Articles