0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Intent にデータを詰める(自分用メモ)

Posted at

いつも忘れるのでメモ。

Intent にデータを詰めて他のアプリコンポーネントを起動したい場合、putExtra を使用することでデータを詰めることができる。

例えば ある Activity に「TEST DATA!!」というデータを渡したい場合は以下のようにする。

FirstActivity.kt
val intent = Intent(this, SecoundActivity::class.java)
// key-value 方式で値を詰める
intent.putExtra("TEST_DATA'S KEY", "TEST DATA!!")

データをもらう側ではgetXXXExtraを使用することでデータを取り出すことができる。

SecoundActivity.kt
    // キーを指定することで対応する value を取得できる
    intent.getStringExtra("TEST_DATA'S KEY")
0
0
0

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?