我是法国人,很抱歉我的英语我尽力了...
我尝试调用一个名为 timer1_tick 的子程序,我希望它停止我的子程序“b_reponse1_click”。问题是我的潜艇不要等到计时器结束......
代码:
Sub Process_Globals
Dim Timer1 As Timer
....
End Sub
Sub Activity_Create(FirstTime As Boolean)
Timer1.Initialize("Timer1", 1000) ' 1000 = 1 second
Timer1.Enabled = True
...
End Sub
Sub b_reponse1_Click
p= p + 1
If b_reponse1.Text = r5 Then
score = score + 1
b_reponse1.Color=Colors.Green
CallSub("",timer1_tick) ' Here i call sub timer1_tick
b_reponse1.Color=Colors.Gray
Else
b_reponse1.Color=Colors.Red
b_reponse1.Color=Colors.Gray
End If
If nbqpassee = 10 Then
Activity.RemoveAllViews
Activity.LoadLayout("lay_main")
Else
CallSub("",loadq)
End If
End Sub
Timer1 倒计时但我的 sub b_reponse1_Click 继续执行而不等待计时器结束
定时器:
代码:
Sub timer1_tick
t = t + 1
Log(t)
End Sub
我试过这个但没有解决我的问题:
代码:
Sub timer1_tick
t = t + 1
Log(t)
timer1.Enabled = False
End Sub
你知道我该怎么做才能停止我的 sub b_reponse1_click 到 1 秒吗?
提前感谢您的回答!