Is there a way to show "Loading" screen with animation in blackberry?
Options:
- PME animation content
- multithreading + set of images + timer/counter
- standard rim api
- some other way
Any of this?
Thanks!
|
Is there a way to show "Loading" screen with animation in blackberry? Options:
Any of this? Thanks! |
|||||
|
|
Fermin, Anthony +1. Thanks to all, you gave me the part of answer. 1.Create or generate (free Ajax loading gif generator) animation and add it to project. 2.Create ResponseCallback interface (see Coderholic - Blackberry WebBitmapField) to receive thread execution result:
3.Create a class to handle your background thread job. In my case it was http request:
4.Create WaitScreen (a hybrid of FullScreen and AnimatedGIFField with ResponseCallback interface):
5.In the end, create Start screen to call HttpConnector.HttpGetStream and to show WaitScreen:
UPDATE: another solution naviina.eu: A Web2.0/Ajax-style loading popup in a native BlackBerry application |
|||||||||||||
|
|
The basic pattern for this kind of thing is: Have a thread running a loop that updates a variable (such as the frame index of the animated image) and then calls invalidate on a Field which draws the image (and then sleeps for a period of time). The invalidate will queue a repaint of the field. In the field's paint method, read the variable and draw the appropriate frame of the image. Pseudo code (not totally complete, but to give you the idea):
Note also here I used an array of Bitmaps, but EncodedImage lets you treat an animated gif as one object, and includes methods to get specific frames. EDIT: For completeness: Add this to a PopupScreen (as in Fermin's answer) or create your own dialog by overriding Screen directly. The separate thread is necessary because the RIM API is not thread-safe: you need to do everything UI related on the event thread (or while holding the event lock, see BlackBerry UI Threading - The Very Basics |
||||
|
|
|
This is simple code for loading screen ....
|
|||
|
|
|
If it's just an animation could you show an animated gif on a popup and close it when loading operation is complete? |
|||
|
|
|
Easiest way is probably to use the standard GaugeField, setting style GaugeField.PERCENT. This will give you a progress bar. Add this to a PopupScreen and it will sit on top of your content. Something like..
Then have an update method which will use _gaugeField.setValue(newValue); to update the progress bar. I normally have this called from whichever thread is doing the work (loading in your case, everytime an operation is complete the progress bar is updated. |
|||
|
|
I would suggest to take a look at this simple implementation. I liked this but never used it. May be helpful to you. |
|||||
|
|
ActivityIndicator is a good option if you are working with at least BB OS 6.0. http://www.brighthub.com/mobile/blackberry-platform/articles/94258.aspx http://docs.blackberry.com/en/developers/deliverables/17966/Screen_APIs_1245069_11.jsp |
|||
|
|