ここに私は何を保存する必要がありますか?私はその絵を描くとその背景をsdcardにiamgeしています。いくつかの方法を試しましたが、ここでは背景画像しか保存しません。ペイントは保存されません。塗料をアンドロイドのsdcardに保存する方法
public void save() {
String filename5;
Date date = new Date(0);
SimpleDateFormat sdf = new SimpleDateFormat ("yyyyMMddHHmmss");
filename5 = sdf.format(date);
try{
mBitmap=BitmapFactory.decodeResource(getResources(),R.drawable.writingsapce);
String path = Environment.getExternalStorageDirectory().toString();
OutputStream fOut = null;
File file = new File(path, "/DCIM/"+filename5+".jpg");
fOut = new FileOutputStream(file);
mBitmap.compress(Bitmap.CompressFormat.JPEG, 85, fOut);
fOut.flush();
fOut.close();
MediaStore.Images.Media.insertImage(getContentResolver(),file.getAbsolutePath(),file.getName(),file.getName());
} catch (Exception e) {
e.printStackTrace();
}}
を働きました。あなたの描画方法を教えてください。進行する方法を教えてください;-) – youssoua