Tagged Questions
3
votes
2answers
10k views
How to handle ButtonField & BitmapField Click (Touch) events in Blackberry Storm?
I have created a ButtonField & a BitmapField like..
public class MyCanvas extends MainScreen implements FieldChangeListener
{
HorizontalFieldManager hfm;
private Bitmap startBitmap;
...
3
votes
2answers
2k views
Blackberry storm touchEvents
Ive ported an Blackberry 4.6.0 application over to the storm on 4.7.0.
All is working fine apart from the touch events i'm trying to control.
I trap touch events in the method below which does as its ...
3
votes
5answers
2k views
Why does google.com look different on blackberry & phonegap vs. blackberry & browser
I'm tyring to get phonegap up and running on blackberry storm (9530 simulator). I had been testing my webapp from withing BB's built in browser, and it was looking ok, but then it totally bit once I ...
3
votes
3answers
684 views
development with Blackberry JDE4.7?
RIM has released a new Blackberry JDE4.7 after releasing the Blackberry Storm. Does the Blackberry storm support programs created using the previous versions? I've heard there have been a lot of ...
2
votes
2answers
802 views
Blackberry storm - update layout on tilt
have developed an app for BB storm while tilting the device the background image of the app screen does not matches with the screen size, i have tried with the sublayout method
public void ...
2
votes
1answer
590 views
How to set Anti Aliasing in Blackberry Storm?
I m drawing in a bitmap like..
bitmap[i] = new Bitmap(60, 60);
Graphics g = new Graphics(bitmap[i]);
g.setColor(Color.BLACK);
g.drawLine(....);
Now how to set Anti-Aliasing on before ...
2
votes
2answers
366 views
blackberry JDE 4.7 - TouchEvent Class - difference between getX and getGlobalX
In the blackberry JDE 4.7,
under the TouchEvent, there are two similar sounding methods:
getX(int touch) "return mapped x coordinate"
getGlobalX(int touch) "return global x coordindate"
Does ...
1
vote
3answers
861 views
Blackberry storm 9530 tracing touch events while scrolling
hey in my screen there is a an edit field and 2 custom button fields as "OK" and "CANCEL"
Below buttonfield there are some more focussable label fields
when i write a name in edit field and press ...
1
vote
0answers
804 views
BlackBerry Storm AccelerometerListener not being notified on first orientation change
This seems to be a well-known issue right now, but the accepted workaround doesn't seem to be working for us.
On the BlackBerry Storm (JDE 4.7, standard set of 4.7+ simulators), the following bit of ...
1
vote
3answers
4k views
How to save & delete a Bitmap image in Blackberry Storm?
I have a ready Bitmap image. Now I want to save & delete it. I m doing it like..
FileConnection fconn = ...
0
votes
5answers
2k views
problem in displaying BitmapFields in HorizontalFieldManager in a row in Blackberry Storm
I had created a HorizontalFieldManager & added BitmapFields in that.
In Blackberry Storm, Display.getWidth() is 480. In that I want to use first 450 to add some BitmapFields at LHS of screen ...