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
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
3answers
883 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 ...
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 ...