質問編集履歴
2
コードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,9 +36,9 @@
|
|
36
36
|
|
37
37
|
start = (Button) findViewById(R.id.start);
|
38
38
|
|
39
|
-
textview1 = (TextView)findViewById(R.id.ex
|
39
|
+
textview1 = (TextView)findViewById(R.id.textview1);
|
40
40
|
|
41
|
-
textview2 = (TextView)findViewById(R.id.
|
41
|
+
textview2 = (TextView)findViewById(R.id.textview2);
|
42
42
|
|
43
43
|
|
44
44
|
|
@@ -68,7 +68,7 @@
|
|
68
68
|
|
69
69
|
|
70
70
|
|
71
|
-
case R.id.ex
|
71
|
+
case R.id.textview1:
|
72
72
|
|
73
73
|
intent = new Intent(this, Sub2Activity.class);
|
74
74
|
|
@@ -78,7 +78,7 @@
|
|
78
78
|
|
79
79
|
|
80
80
|
|
81
|
-
case R.id.
|
81
|
+
case R.id.textview2:
|
82
82
|
|
83
83
|
intent = new Intent(this,Sub3Activity.class);
|
84
84
|
|
1
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
というエラーが出て対処法がわかりません。
|
9
|
+
というエラーが出て対処法がわかりません。また、Textview1,2の部分は問題なく遷移します。
|
10
10
|
|
11
11
|
|
12
12
|
|