LoginSignup
0
2

More than 3 years have passed since last update.

【Kotlin備忘】他のActivityへBitmapの受け渡し

Posted at

photoはbitmap

受け渡し側

val intent = Intent(this, XXXXActivity::class.java)
intent.putExtra("data",photo)
startActivity(intent)
受け取り側
val intent = getIntent()
val photo = intent.getParcelableExtra<Bitmap>("data")

bitmapがデカすぎる場合、URIを利用した方がいいらしいけど

0
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2