0
我試圖顯示日曆按鈕單擊使用窗體,但我無法更改日期並非常努力地找到重點。lwuit日曆與按鈕事件
...
Button mdate=new Button("change date");
mdate.addActionListener(this);
...
public void actionPerformed(ActionEvent ae) {
Form cal= new Form();
com.sun.lwuit.Calendar c =new com.sun.lwuit.Calendar();
c.setFocus(true);
c.addActionListener(this);
cal.addComponent(c);
cal.show();
}
如何展示和替代形式更好的辦法
我怎麼能添加事件到日曆選定的特定日期.. 請幫助 – MobileEvangelist