• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. Z

    Apps OpenGL Line

    Can anyone tell me why this code crashes my app please? float line_vertex[]= { x1,y1, x2,y2 }; FloatBuffer vertexBuffer; ByteBuffer byteBuffer = ByteBuffer.allocateDirect(line_vertex.length * 4)...
  2. Z

    Apps Custom Eclipse project templates

    I'm after the easiest way to start a project from my own half developed project... From searching, to make a template / example project I have to write a plugin, or maybe use Refactoring. Are those the only methods to set up a framework or do you do it another easier way? (not really...
  3. Z

    Apps Menu button / Actionbar

    I wrote an app the other day but was only testing on an old 2.1 phone which had a hardware Menu button. Today I put it on a 4.1 device without a hardware Menu button. After looking about I found out about the Actionbar. I eventually followed the official Android tutorial on using the compat...