回答編集履歴
1
コード中のコメント修正
test
CHANGED
@@ -56,7 +56,7 @@
|
|
56
56
|
|
57
57
|
|
58
58
|
|
59
|
-
// ボタンのテキストに現在のcount値をセット
|
59
|
+
// ボタンのテキストに現在のcount値をセット。
|
60
60
|
|
61
61
|
button1.setText(String.format("MAIN1: %d", count));
|
62
62
|
|
@@ -72,7 +72,7 @@
|
|
72
72
|
|
73
73
|
public void onClick(View view) {
|
74
74
|
|
75
|
-
// 次の画面を開く為のインテント。
|
75
|
+
// 次の画面を開く為のインテント。次の画面への値としてcountの現在値 + 1を入れておく。
|
76
76
|
|
77
77
|
Intent intent = new Intent(getApplicationContext(), MainActivity2.class);
|
78
78
|
|