任何人都可以告诉我为什么在BB 7.0 OS上运行这个脚本时发生延迟,在BB 5.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"
答案 0 :(得分:1)
尝试添加他“”似乎你忘记了那个:)
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旁边的延迟,也许您正在安装许多应用程序......