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