1

質問は以前の質問のいくつかで間接的に話されましたが、私はそれについて決定的なものを見たことがありません。

CommandAction私は現在、このコードを使用して、実装内のLWUITフォームを表示しています。

public void commandAction(Command cmnd, Item item) {

if (item == LogIn && cmnd == maincommand) {
RechForm = new com.sun.lwuit.Form("Basefook");
            HttpRequestHandler handler = new HttpRequestHandler();
            HTMLComponent htmlc = new HTMLComponent(handler);
            htmlc.setPage("http://facebook.com");
            RechForm.addComponent(BorderLayout.CENTER, htmlc);
            com.sun.lwuit.Display.init(this);
            RechForm.show();

}

}

現在、フォームは表示されず、クラッシュもしません。

それが不可能な場合は、lcduiに基づくMIDP用のある種のブラウザコントロールの回避策を提案できますか?

4

1 に答える 1

0

解決しました。動作するようになりましcom.sun.lwuit.Display.init(this);startApp()

RechForm.addComponent(BorderLayout.CENTER, htmlc);

RechForm.addComponent(htmlc);
于 2013-02-15T12:53:15.397 に答える