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

testing - Detect whether test has failed within fixture -

AbotX : How do you create a parallel crawler that stays on and can be added to at run time from new requests -

android - Create single AAR file from multiple modules using Gradle -