※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
// import com.nttdocomo.ui.*; が必要 class MainPanel extends Panel { private Label label; private TextBox text; MainPanel() { this.setSoftLabel(Frame.SOFT_KEY_1, "CLIK"); this.setSoftLabel(Frame.SOFT_KEY_2, "EXIT"); setTitle("Start IApplication"); label = new Label("何か書いて!"); this.add(label); text = new TextBox("入力フィールド", 20, 2, TextBox.DISPLAY_ANY); this.add(text); } }
次へ >> |