私はブラックベリーアプリ開発の初心者です。
BlackberryプラグインをEclipseに正常にインストールしました。私の最初のアプリは、プロジェクト内に「assets」という名前で作成したフォルダーから html ファイルをロードする必要があります。どうすればhtmlファイル「assets/index.html」をロードできますか?
public static void main(String[] args)
{
// Create a new instance of the application and make the currently
// running thread the application's event dispatch thread.
Ramadanclass theApp = new Ramadanclass();
theApp.enterEventDispatcher();
}
メインスクリーン:
public final class Ramadan extends MainScreen
{
public Ramadan()
{
setTitle("Ramadan");
}
}
編集:私が試したこと:
BrowserField myBrowserField = new BrowserField();
add(myBrowserField);
myBrowserField.requestContent("assets/index.html");
このエラーがあった
assets/index.html のナビゲーション リクエスト ハンドラがありません