Tagged Questions
The BlackBerry Storm is a series of touch screen smartphones manufactured by Research In Motion.
7
votes
15answers
14k views
Blackberry MDS simulator - Can't connect to the internet in the simulator
I'm trying to do some testing of a website through the Blackberry simulator, while the simulator works fine, I can't get to any sites in the Blackberry Browser.
Here is the specific setup I'm using.
...
4
votes
2answers
379 views
Things to keep in mind before developing a blackberry application
I have just entered into the Blackberry Arena.
Now I am ready for the develop an application for the blackberry devices.
(1) But I would like to know that while I develop any app for blackberry, ...
3
votes
1answer
82 views
Current location using wi-fi on BlackBerry Storm 2 (9550)
I want to get the current location using wi-fi on my Storm 2 9550. I have implemented LocationProvider and it is working fine on the simulator after sending lat long manually, but it doesn't work on ...
3
votes
2answers
534 views
What image format is fastest for BlackBerry?
I'm trying to load some images using Bitmap.getBitmapResource(), but it takes about 2 or 3 seconds per image to load. I'm testing on the Storm, specifically. The odd thing is, when I install OS 5.0, ...
3
votes
2answers
2k views
how to set focus on Bitmap Field,Blue color is not visible,blackberry
i am using a bitmap field that contains a small image.
when focus comes on that image then blue color of the focus does not appears,how can i set the focus width and height
my code::
...
3
votes
1answer
222 views
Open a website when user clicks on a label field on BlackBerry
I want my BlackBerry app to open a website when I focus on its name.
Can anybody tell me how to do that?
3
votes
1answer
1k views
BlackBerry - Disable show default menu on screen open
I have labels and fields in my application screen. When i launch to a particular screen which has many labels and editfields and buttons. The problem is, when i launch a particular screen, default ...
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
1answer
951 views
Blackberry Storm Emulator - TouchGesture events not firing, how to get a Swipe to work?
Been playing with the Storm Emulator and the 4.7 JDE, for the life of me I can't figure out how to fire gesture events in the emulator.
Below is the touch event code for the RIM sample app ...
2
votes
1answer
103 views
get current lat long without GPS in blackberry storm 2
i m working with the application which are needed to get current lat long of user .
in our area GPS is not working so how to get lat long without gps system
2
votes
1answer
209 views
Blackberry:lock application in potrait mode?
I want to start my application in portrait mode, always, on a BlackBerry Storm,
even then when device is in landscape mode.
How could I do that, please help.
I know we can control the orientation ...
2
votes
1answer
171 views
blackberry signed keys not working after mylaptop restart
i am getting signed keys to my mail.
i got 3 csi files and fallow the steps to install these keys which are give in main.
eveything is fine but after restarting my pc i can't able to sign project.
...
2
votes
1answer
732 views
BlackBerry - Redraw my titlebar after orientation change
I am writing a BlackBerry application that uses a custom title bar. Rather than using the textual based title bar, my application uses an image.
I am having trouble redrawing this title bar once the ...
2
votes
2answers
91 views
Identify BlackBerry devices with at runtime with Java
How to identify the Blackberry device currently running the application?
For example: how to identify whether the current device is a Storm or a Torch?
BlackBerry Storm 2 (9520/9550)
BlackBerry ...
2
votes
2answers
2k views
Blackberry - System.out.println() using eclipse plugin
I am just entered into the Blackberry Arena..
I am using Eclipse Plugin for running my testing application to simulator.
So, In my code somewhere I have add System.out.println("Print"); statements, ...
2
votes
1answer
725 views
Disable accelerometer on Blackberry Storm
i develop application for Blackberry. In Storm 1 (4.7) and Storm 2 (5.0) i need to disable accelerometer in my application. I want my application does not react to the accelerometer, but that does not ...
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
555 views
Blackberry way to store audio and video into sqlite?
I want to make a blackberry app. which will store audio and video files into the sqlite database.
Does blackberry have a special api for this? (special classes for byte[])
Can I store files into ...
2
votes
1answer
2k views
Current latitude and longitude in a BlackBerry app
I want to get the user's latitude and longitude in my BlackBerry app, and then generate the maps according to it.
How can I do that?
my code is:
import java.util.Timer;
import java.util.TimerTask;
...
2
votes
3answers
4k views
How to access image stored in Blackberry using Bitmap.getBitmapResource()?
I want to access an image stored in Blackberry, say at location "store/home/user/image.png" .
Now can i access this image as,
String filePath = "file:///store/home/user/image.png;
Bitmap image = ...
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
1answer
200 views
Customized Checkboxes
I am trying to implement image as checkbox.
I have a list with 2 columns and I want to display checbox image on right side, as a third column.On clicking that image ,the image will be changed to a ...
1
vote
2answers
130 views
Why BlackBerry GPS is slow compared to other technologies (iPhone & Android)
hi all i am working on Application which is bashed on Event according to current location .when my application start i am displaying Event in my ListField according to current location. Application ...
1
vote
2answers
86 views
Is it possible to focus the camera using the BlackBerry OS5 API?
I am developing an app which takes a preview of the device's camera and analyses that feed.
I can create the camera preview, but cannot get the camera to adjust its focus automatically.
I know that ...
1
vote
0answers
129 views
how to lock perticular screen orientation in Blackberry storm 2
in my application there are around 7 to 8 screen and i want to do that particular 2 or 3 screen orientation change and other remain still in Portrait View.
i have implemented this `int direction = ...
1
vote
1answer
59 views
listfield in blackberry storm and torch
I have listfield which contains several rows.
It is working fine when i am using in blackberry torch(I can scroll the listfield and can select(click) any row).
But the same application when i am using ...
1
vote
1answer
154 views
get current locaion from GPS in Blackberry application
how to get current location from GPS in Blackberry application . i tried to get location from Locationmanager method in simulator its work fine but in my device (Storm 2 using wifi) i am not able to ...
1
vote
1answer
131 views
google map with route in blackberry
how to use google map with route in blackberry . i tried blackberry map with route but in my device (Storm 2) cant display map . i dont know what is the issue ?
any one have idea ragarding google ...
1
vote
0answers
173 views
How to get current location in blackberry device?
In simulator my gps code work fine. But when I install my app in device I can't get current latitude and longitude.
When I send lat long from simulator it get proper lat long which is send through ...
1
vote
1answer
78 views
Encode image from url not working
In my blackberry application All screen have Ad image at the bottom of the screen (Banner image) .
In Simulator application working fine but when i install app in my Strom 2 (9550) application work ...
1
vote
0answers
54 views
Error : Detected background switch for MyApp(24) who has NO tunnels open - defocus NOT called
when i run or debug my BB application i got this Detected background switch for MyApp(180) who has NO tunnels open - defocus NOT called Error
i have no idea regarding this that how this error occur ...
1
vote
1answer
127 views
How do I take crash log on Blackberry touch device?
In one of the site its written that to take a crash log on Blackberry device, on home page we need to press Alt+lglg. This worked fine for me. But on touch devices keyboard does not comes on Home ...
1
vote
0answers
55 views
GaugeField is not Scrolling
I implemented the GaugeField, but it is not scrolling in Blackberry Storm 5.0.
Can any one tell me how to make the GaugeField to scroll in storm? Provide me any sample code.
Thanks for any help.
1
vote
2answers
343 views
Lock orientation on Storm
I need to lock my application in portrait mode on a Storm(and Strom 2) device.
I use Ui.getUiEngineInstance().setAcceptableDirections(Display.DIRECTION_PORTRAIT); for this.
Here is the problem:
...
1
vote
1answer
372 views
BlackBerry: Screen not scrolling on touch
I am building a BlackBerry Java application and I want my screen to scroll when I drag my finger on touch. This behavior works perfectly on other screens where I am implementing a ListField. However, ...
1
vote
0answers
80 views
i generated the code as below ,but how to start the timer
package com.parlor.ui;
import java.util.Timer;
import java.util.TimerTask;
import net.rim.device.api.system.Display;
import net.rim.device.api.ui.;
import net.rim.device.api.ui.container.;
import ...
1
vote
0answers
350 views
implement globle tab bar in blackberry
I am implementing an application for Blackberry Storm and Bold. This application needs to implement a global tab bar to handle multiple screens. How do I do this? I would like something similar to ...
1
vote
2answers
73 views
Best way to ask a user to input a date?
How can I ask my user to input a date in my Blackberry application?
What controls does the RIM offer me to show my users something familiar and easy to implement?
1
vote
0answers
47 views
Can't I get my app to work with click and touch (within same project)?
i have developed an application that will basically run on all versions of the blackberry unit (ver 4.5 and above). however, i have noticed that navigationClick() is not consumed with a touch ...
1
vote
1answer
137 views
how to get amount value in kb of data used by internet?
i making a application where i need total amount of data used by user by accessing internet.
how could i get that value.
plz help me send the code.
1
vote
1answer
110 views
What size image should I use for BlackBerry context menus?
The BB OS 5.0 supports images for context menus. The API documentation says the image will be scaled to fit a square set by the height of the menu font. I find that totally unhelpful.
The only way I ...
1
vote
1answer
442 views
How to customize listfield items?
I am new to Blackberry development.My application contain five list items having strings each item.My requirement is when one cell is selected it should enlarge and other items adjust space ...
1
vote
1answer
239 views
BlackBerry - Develope Cropit Like Application
i want to develop cropit like application, i just want to know how to increase or decrease the size of the rectangle over the image (multitouch events), which define the image portion to be cropped.
...
1
vote
2answers
687 views
removing the default blue color on focus
I have a created a custom Button field , when the button is on focus default blue background is coming , i want to remove that blue background . actually i am placing image on button and on image ...
1
vote
0answers
60 views
Blackberry storm application screen dont show the whole screen area?
Hello i m newbie to Blackberry. m working on a application for blackberry storm. it contains a custom layout manager and whenever i run it on simulator it dont appear on show on full screen.i set ...
1
vote
2answers
263 views
How to increase the space between the fields in VerticalFieldManager
I am adding three CustomButtons in verticalFieldManager, but there is no spacing between the buttons. all are coming one after the other.
1
vote
2answers
454 views
Disabling Submit Button in ASP.NET 3.5 Application with JavaScript breaks BlackBerry submission
The following code is being used to disable a Submit button once it has been clicked. This works great on desktop browsers and most BlackBerry mobile browsers.
Submit.Attributes.Add("onclick", ...
1
vote
0answers
256 views
BlackBerry Storm - Cannot scroll vertically while in TreeField
I am having issues performing a vertical scroll on the BlackBerry Storm while in a TreeField.
The tree nodes expand just fine, even with expanded nodes while in the tree I cannot scroll to the bottom ...
1
vote
1answer
1k views
BlackBerry - TouchEvent on multiple managers
i am new to blackberry application development here is my question i am using two verticalfieldmanager "layout" and "manager" in my application. layout has three custom button field and layout is ...
1
vote
1answer
2k views
load images dynamically on scroll in blackberry
How to display images in the form of pages where only one page is displayed at a time on blackberry screen. On scrolling down subsequent images will load at run time. So that loading of images do not ...