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

Search results

  1. F

    how to merge an array of bitmap together in one bitmap ?

    hi there, how can i merge together in one single bitmap the content of a bitmap array ? here's my render method: //here's what i have: for (int x = 0; x < MapLoader.width; x++) { for (int y = 0; y < MapLoader.height; y++) { g.drawBitmap( picSource[x][y], posX, posY...