1, 在BlackBerry下,向Form中添加ImageItem对象时,相对于其他平台来说,ImageItem构造函数的实参有些特殊要求,如下:
ImageItem(String label, Image img int layout, String altText);
layout 不能有ITEM.LAYOUT_TOP, 否则,每个ImageItem对象将占有一整屏, 甚至一个Form下只能显示第一个ImageItem对象(虽然append对象时不会出错)。
altText不能为null, 否则程序会异常推出。
eg: ImageItem img = new ImageItem(null, Image.CreateImage("/tmp.png"),ITEM.LAYOUT_LEFT, "image1");
2, Update application UI in secondary thread.
public class MyApplication extends UiApplication
{
public StartThread()
{
invokeLater(new Runnable()
{
public void run()
{
//Thread body, update application UI here;
}
});
}
阅读(905) | 评论(0) | 转发(0) |