如何动态设置黑莓的标题?
当某些条件成立时,我想一次又一次地更改黑莓应用程序视图的标题,我该怎么做?
现在我正在做,
BitmapField loading=new BitmapField(Bitmap.getBitmapResource("loading.png"));
this.setTitle(loading);
但现在我想要标题上的其他内容,我该怎么做?
I want to change the title of blackberry application view again and again when certain condition gets true, how can I do it?
Right now I am doing as
BitmapField loading=new BitmapField(Bitmap.getBitmapResource("loading.png"));
this.setTitle(loading);
but now I want something else on title, how can i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在MainScreen.setTitle 您可以使用任何字段 - LabelField 或 BitmapField 甚至 CheckboxField :) 实际上,任何东西。
但请记住从其他线程更新 UI 时处理 UI 线程。
In MainScreen.setTitle you can use any Field - LabelField or BitmapField or even CheckboxField :) actually, anything.
But remember to handle UI thread when updating UI from other threads.