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

enters image description here

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,

convert frame layout image , save it


Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -