Questions tagged [rim-4.7]
11 questions
5
votes
1 answer
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;
private BitmapField startBitmapField;
private…

Shreyas
- 209
- 1
- 7
- 16
3
votes
2 answers
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 supposed to but the problem is
after my logic in…

TonyNeallon
- 6,607
- 12
- 42
- 49
3
votes
5 answers
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 tried to look at the some code from within…

JJ Rohrer
- 2,671
- 5
- 29
- 37
3
votes
3 answers
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 changes in this version compared to the old ones.
And…

lostInTransit
- 70,519
- 61
- 198
- 274
2
votes
2 answers
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 sublayout(int width, int height)
{
//update scrren…

sujithRavindran
- 21
- 2
2
votes
1 answer
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 g.drawLine()?

Shreyas
- 209
- 1
- 7
- 16
2
votes
2 answers
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 anyone know what the difference is between the two? The…

yamspog
- 18,173
- 17
- 63
- 95
1
vote
3 answers
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 enter then focus comes to "OK" button but how to set…

Swati
- 2,870
- 7
- 45
- 87
1
vote
0 answers
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 code registers an AccelerometerListener. The…

Andrey Butov
- 2,279
- 19
- 27
1
vote
1 answer
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 = (FileConnection)Connector.open("file:///store/home/user/StoredBitmap/"+picIndex+".bmp",Connector.READ_WRITE);
if(!fconn.exists())
…

Shreyas
- 209
- 1
- 7
- 16
0
votes
3 answers
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 which I m creating at runtime & add 2 BitmapFields at…

Shreyas
- 209
- 1
- 7
- 16