2

我正在使用 lwuit 创建一个应用程序。我想在组合框中添加日历。请尽快给我一个想法..

4

1 回答 1

4

您的意思是要在组合框值的末尾添加日历组件的选定日期还是在文本框中显示选定的日期?如果是这样,那么下面的代码会在文本框中显示日历组件的选定日期:

Button cal = new Button("Calendar");  // button for calendar
cal.addActionListener(new ActionListener() {  // define action for button

                //  action listener to show the calendar container
                public void actionPerformed(ActionEvent ae) {
                    final Form calFrame = new Form();
                    final Calendar cal = new Calendar();
                    calFrame.setScrollable(true);
                    calFrame.setSmoothScrolling(true);
                    calFrame.setIsScrollVisible(true);
                    cal.addActionListener(new ActionListener() {

                        public void actionPerformed(ActionEvent ae) {
                            txtDate.setText(cal.getDate());  // textfield in which date should be set
                            mainForm.showBack();  // main form to show back after calender disappears
                        }
                    });

                    calFrame.addComponent(cal);
                    calFrame.show();
                }
});
            mainForm.addComponent(calButton); // add calendar button to main form

此代码将向您的主窗体添加一个日历按钮,并将在文本字段中显示选定的日期(此处命名为 txtDate)。如果要在组合值中添加日期,可以在组合组件的向量或列表中添加所选日期。如果这不是您想要的,请简要说明您实际上想要做什么。

于 2011-06-07T09:50:06.710 回答