简体   繁体   中英

Save the Image of activity on click of menu item

I have and activity where on click of menu item save I want to save the image of the screen to my device inside aa specific folder. how can I do it. ?

The image which is displayed in the background is a ImageView and the text is textview. I have to merge them and save them as a single image.

在此处输入图片说明

Try with below code on menu item click event....

View v = view.getRootView();
v.setDrawingCacheEnabled(true);
Bitmap b = v.getDrawingCache();

// give path of external directory to save image
String extr = Environment.getExternalStorageDirectory().toString();
File myPath = new File(extr, "test.jpg");
FileOutputStream fos = null;

try {
    fos = new FileOutputStream(myPath);
    b.compress(Bitmap.CompressFormat.JPEG, 100, fos);
    fos.flush();
    fos.close();       
} catch (Exception e) {       
    e.printStackTrace();
}

where view v is root layout...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM