我在Brightscript中创建了一个登录屏幕。且使用凭据的用户名和密码均值存储在键盘对话框中。一个按钮“确定”和“取消”按钮。我完成了这些代码,并将值存储在roRegistrySection中,并且两个按钮单击事件均正常工作,但是我单击“确定”按钮并打开另一个屏幕,它有可能在Brightscript中出现,怎么可能?谢谢
以下功能用于点击事件
function clickLogin()
' here is use the button focus after the ok
if m.btngrp.buttonSelected = 0 then
? "print the signIn button"
else if m.btngrp.buttonSelected = 1 then
? "print the setting button"
else
? "nothing press"
end if
end function
我在另一个屏幕上创建单独的.brs文件,在这里我使用列表视图,因此如何单击“确定”按钮并在另一个屏幕上显示列表视图。