Upgrade to Pro — share decks privately, control downloads, hide ads and more …

pixiv SUMMER BOOT CAMP 2015 講義資料

Keisuke SASAKI
September 24, 2015

pixiv SUMMER BOOT CAMP 2015 講義資料

Androidのはなしをしました

Keisuke SASAKI

September 24, 2015
Tweet

More Decks by Keisuke SASAKI

Other Decks in Technology

Transcript

  1. createIntent public static Intent createIntent(Activity fromactivity) { Intent intent =

    new Intent(fromActivity, Activity2.class); return intent; } 呼び出される側(Activity2)
  2. createIntent public static Intent createIntent(Activity fromactivity, int a) { Intent

    intent = new Intent(fromActivity, Activity2.class); intent.putExtra(“hoge”, a) return intent; } 値を渡したいとき