我试图遵循这一点,但没有运气。我正在使用treeItem或Choicegroup,它可以被选中但不能被点击,就像点击它一样,它将转到下一页。
我不想使用X和Y因为我的Item是动态的,它是通过XML生成的。因此,项目位置将被更改。我想要一个特定项目的触摸指针,例如我正在使用的选项组。
http://www.enough.de/products/j2me-polish/documentation/lush-ui/touch-support.html#gesture-click
答案 0 :(得分:0)
你有选择组,你想要点击项目,它应该转到下一页然后: 你可以使用:
choicegroupname.addCommand(command of Command.OK type, say commandOpen);
然后,您可以将setItemCommandListener设置为commandOpen,并且在commandAction中,您可以遍历choicegroup,以便您可以获得聚焦索引并在那里执行代码,然后break.Hope这会有所帮助。
你可以这样做:
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;
}
}
}
});