質問編集履歴

2

画像の追加

2015/11/10 08:21

投稿

mokumoku
mokumoku

スコア46

test CHANGED
File without changes
test CHANGED
@@ -93,3 +93,7 @@
93
93
  }
94
94
 
95
95
  ```
96
+
97
+ 追加
98
+
99
+ ![イメージ説明](29c42fd4cf654c7cddf35bea7aa7d422.png)

1

追記

2015/11/10 08:21

投稿

mokumoku
mokumoku

スコア46

test CHANGED
File without changes
test CHANGED
@@ -33,3 +33,63 @@
33
33
  画像2↓
34
34
 
35
35
  ![イメージ説明](b4709b39b2dab70662a9315d9bf9d7c5.png)
36
+
37
+
38
+
39
+ 追記
40
+
41
+ ```ここに言語を入力
42
+
43
+ public class MyCountDownTimer extends CountDownTimer {
44
+
45
+
46
+
47
+ public MyCountDownTimer(long millisInFuture, long countDownInterval) {
48
+
49
+ super(millisInFuture, countDownInterval);
50
+
51
+
52
+
53
+ }
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+ @Override
62
+
63
+ public void onFinish() {
64
+
65
+
66
+
67
+
68
+
69
+ String title = getString(R.string.endtext);
70
+
71
+ builder.setTitle(title);
72
+
73
+ builder.setMessage("テスト");
74
+
75
+
76
+
77
+ builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
78
+
79
+ public void onClick(DialogInterface dialog, int which) {
80
+
81
+ Intent intent = new Intent(Activity1.this,
82
+
83
+ Activity2.class);
84
+
85
+ startActivity(intent);
86
+
87
+ }
88
+
89
+ });
90
+
91
+ builder.create().show();
92
+
93
+ }
94
+
95
+ ```