javaでのiアプリの画面表示について
javaでiアプリを作成したいのですが、行きずまっています。
テキストボックスとストップウォッチを画面上に両方表示させたいのですが、下のDisplay.setCurrent(p);とDisplay.setCurrent(mainWin);のどちらかしか表示されません。
ストップウォッチは、MainWin.javaが他にありますのでしっかり起動します。
どうすれば良いでしょうか?
package stopwatch;
import com.nttdocomo.ui.*;
public class StopWatch extends IApplication implements ComponentListener
{
MainWindow mainWin;
TextBox textbox1;
TextBox textbox2;
public void start()
{
Panel p = new Panel();
textbox1 = new TextBox("",16,2,TextBox.DISPLAY_ANY);
p.add(textbox1);
textbox2 = new TextBox("(未入力)",16,2, TextBox.DISPLAY_ANY);
textbox2.setEditable(false);
p.add(textbox2);
p.setComponentListener(this);
Display.setCurrent(p);
mainWin = new MainWindow();
Display.setCurrent(mainWin);
}
public void componentAction(Component source , int type, int param)
{
if(type == ComponentListener.TEXT_CHANGED && source == textbox1) {
textbox2.setText(textbox1.getText());
}
}
}
お礼
ありがとうございますっ!