0

我试图遵循这一点,但没有运气。我用的是treeItem或者Choicegroup,可以选择但不能点击,比如点击后会跳转到下一页。

我不想使用 X 和 Y,因为我的 Item 是动态的,它是通过 XML 生成的。因此,项目位置将被更改。我想要一个特定项目的触摸指针,比如我使用的选择组。

http://www.enough.de/products/j2me-polish/documentation/lush-ui/touch-support.html#gesture-click

4

1 回答 1

0

您有 Choicegroup 并且您希望在单击项目时它应该转到下一页:您可以使用:

choicegroupname.addCommand(command of Command.OK type, say commandOpen);

然后,您可以将 setItemCommandListener 设置为 commandOpen,在 commandAction 中您可以遍历选择组,以便获得重点索引并在那里执行代码,然后中断。希望这会有所帮助。

你可以这样做:

    commandOpen.setItemCommandListener(new ItemCommandListener() {
        public void commandAction(Command cmd, Item arg1) {
            //size will be count of items
            for(int i=0 ; i < size ; i++){
                if(choicegroupname.focusedIndex== i){
                    //Do your code
                    return;
                }
            }
        }
    });
于 2014-05-12T07:44:12.367 回答