我是黑莓应用程序开发的初学者。
我已经在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 没有导航请求处理程序