java
1コード 2 3public class displayCreatedQRActivity extends AppCompatActivity { 4 5 String currentPhotoPath; 6 7 @Override 8 protected void onCreate(Bundle savedInstanceState) { 9 super.onCreate(savedInstanceState); 10 setContentView(R.layout.activity); 11 12 try { 13 createImageFile(); 14 } catch (IOException e) { 15 e.printStackTrace(); 16 } 17 18 Bitmap codeImg = BitmapFactory.decodeResource(getResources(), R.drawable.imageName);//画像の取得 19 findViewById(R.id.button).setOnClickListener(new View.OnClickListener() { 20 @Override 21 public void onClick(View v) { 22 galleryAddPic(); 23 } 24 }); 25 26 } 27 28 29 //ファイル名を唯一無二にしたいから、時間をとってきてそれを名前にする、 30 //その後ファイルを保存をするディレクトリを取得する 31 private File createImageFile () throws IOException { 32 // Create an image file name 33 String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date()); 34 String imageFileName = "JPEG_" + timeStamp + "_"; 35 File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES); 36 File image = File.createTempFile( 37 imageFileName, /* prefix */ 38 ".jpg", /* suffix */ 39 storageDir /* directory */ 40 ); 41 // Save a file: path for use with ACTION_VIEW intents 42 currentPhotoPath = image.getAbsolutePath(); 43 return image; 44 } 45 46 private void galleryAddPic () {//画像をギャラリーに保存する 47 Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE); 48 File f = new File(currentPhotoPath); 49 Uri contentUri = Uri.fromFile(f); 50 mediaScanIntent.setData(contentUri); 51 this.sendBroadcast(mediaScanIntent); 52 } 53 54 55}
今はこのようなコードを(これを参考に)作ってみました。ただcodeImgをどこで使えば良いのかよくわかりません。画像をギャラリーに保存するにはどうしたら良いでしょうか。
あなたの回答
tips
プレビュー