谁能告诉我为什么当我在BB7.0操作系统上运行这个脚本时出现延迟,在BB5.0上它运行得很好
我的代码是
BrowserField myBrowserField;
myBrowserField = new BrowserField();
add(myBrowserField);
String content ="<html><head><style type='text/css'> p{color: blue;line-height:200%;}</style></head><body>"+
"<p>Inspired by one of the most opulent among gems,Amber is our multi-tier Loyalty Programme</p>"+
"<p align=justify>The Amber stone is associated with the fire element,Which is known to draw people,with itswarmth and radiance,while infusing a unique sense of loyalty into whatever it comes in contact with </p>"+
"<p align=justify>This Programme is an example of our steadFast</p>"
;
myBrowserField.displayContent(content,"");//"http://localhost"发布于 2012-01-20 05:48:41
尝试添加他"“似乎你忘记了这一点:)
BrowserField myBrowserField;
myBrowserField = new BrowserField();
add(myBrowserField);
String content ="<html><head><style type='text/css'> p{color: blue;line-height:200%;}</style></head><body>"+
"<p>Inspired by one of the most opulent among gems,Amber is our multi-tier Loyalty Programme</p>"+
"<p align=justify>The Amber stone is associated with the fire element,Which is known to draw people,with itswarmth and radiance,while infusing a unique sense of loyalty into whatever it comes in contact with </p>"+
"<p align=justify>This Programme is an example of our steadFast</p>"+
"</body></html>"
;
myBrowserField.displayContent(content,"");//"http://localhost"我用BB OS7试了试我的9790,没有出任何问题,而且工作得很好。对于RAM之外的延迟,也许你正在安装很多应用程序…
https://stackoverflow.com/questions/8560653
复制相似问题