in my android app i need to take screen capture and share the captured screen in mail(captured screen to be shown mail).
i did screen capture by the following code:
view = (LinearLayout)findViewById(R.id.screen);
.........
View v1 = view.getRootView();
System.out.println("Root View : "+v1);
v1.setDrawingCacheEnabled(true);
Bitmap bm = v1.getDrawingCache();
System.out.println("Bitmap : "+bm);
iv.setImageBitmap(bm);
this take the screen short and show the image in ImageView. i do not know how to display the screen capture in mail and where the image is stored. please help me.
Log cat : i get the following
08-01 12:40:40.640: INFO/System.out(3115): Bitmap : android.graphics.Bitmap@44f0c508