예제 #1
0
 def dropdown_result(new_dropdown):
     a.msg('下拉菜单中的值为第{}位的“{}”。'.format(
         new_dropdown['index'], new_dropdown['value']
     ))
예제 #2
0
 def rest():
     a.msg('我会很快搞定的,等我!')
     a.back()
예제 #3
0
 def input_result(new_input):
     a.msg('输入框中的文本为:{}'.format(new_input))
예제 #4
0
 def check_result(new_check):
     a.msg('现在复选框的值为:{}'.format(new_check))
예제 #5
0
 def radio_result(new_ratio):
     a.msg('现在选中的是第{}位的“{}”。'.format(
         new_ratio['index'], new_ratio['value']
     ))
예제 #6
0
 def rate_result(new_rate):
     a.msg('您的评分为{}分。'.format(new_rate))
예제 #7
0
 def button_result():
     a.msg('按钮已按下')