make a visting card image and attach it to a email android -
i have make printable business card shown in attached image , attach email in form of .png image. have no idea how making image in android , attach email in .png format
on button click.for reference have attached image of card on here. viewing post..
one way can make card layout , fill in or let user fill in (whichever). , can use following piece of code turn view bitmap
public bitmap viewtobitmap(view view) { bitmap bitmap = bitmap.createbitmap(view.getwidth(), view.getheight(), bitmap.config.argb_8888); canvas canvas = new canvas(bitmap); view.draw(canvas); return bitmap; }
code question here,
Comments
Post a Comment