Tagged Questions
3
votes
2answers
11k 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;
...
2
votes
2answers
811 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
595 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 ...
1
vote
0answers
817 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 ...