我们如何在android中创建一个下拉菜单,当我们从下拉列表中选择一个项目时,该菜单无法调焦?
之前我创建了一个下拉菜单,它是组合框。每次我从下拉列表中选择一个项目时,下拉菜单都是可聚焦的。它不应该。通过将其更改为选项菜单来解决此问题。我从这个帖子Combo box not focusable
得到了一个建议现在,问题是,选项菜单在android中不起作用。它仅适用于IOS。
注意:我正在使用Livecode进行开发。
答案 0 :(得分:1)
LC中有旋转器:
http://forums.runrev.com/phpBB2/viewtopic.php?f=53&t=14543
但他们可能对你的需求有些过分。您是否考虑过使用一组分组按钮?结合“移动”命令,您可以添加动画。
西蒙
答案 1 :(得分:1)
您不应该在移动设备上使用菜单按钮。这是糟糕的GUI设计。
这是Android的一个示例:
global gCurrentSelectedValue
on mouseUp
put "One,Two,Three,Four,Five,Size,Seve,Eight,Nine,Then" into myOptionList
put 4 into gCurrentSelectedValue // sometimes you need more lines for this
mobilePick myOptionList,gCurrentSelectedValue,"checkmark","cancelDone"
put the result into rslt
if rslt > 0 then
put rslt into gCurrentSelectedValue
// do something with gCurrentSelectedValue
end if
end mouseUp