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

Search results

  1. G

    Apps Views order in LinearLayout

    Hello, dudes I have a problem with LinearLayout and want to solve it with API properties and not with a specialized solution: - My main.xml has a LinearLayout (named topLayout and orientation=vertical) inside a root LinearLayout; - In java code I did topLayot.setGravity(Gravity.RIGHT)...
  2. G

    Saving Canvas drawing as JPG/PNG/etc..

    Hello guys I need to save a canvas result into a SD Card. Right? In the MyView.onDraw(Canvas) i am calling: canvas.drawBitmap(bmp1);//draws a JPG circle loaded from drawable resource canvas.drawBitmap(bmp2);//draws a JPG square loaded from drawable resource canvas.drawBitmap(bmp3);//draws a...