回答編集履歴

1

ソースコードいれてみました

2016/03/08 13:43

投稿

退会済みユーザー
test CHANGED
@@ -1 +1,15 @@
1
1
  Intentで受け取れないときはBundleを使ってみてはどうでしょうか。
2
+
3
+ 下のような感じでー。
4
+
5
+
6
+
7
+ ```Android
8
+
9
+ Intent intent = new Intent();
10
+
11
+ Bundle bundle = intent.getExtras();
12
+
13
+ bundle.get("con");
14
+
15
+ ```