Questions tagged [blackberry-jde]

Blackberry Java Development Environment

The BlackBerry Java Development Environment (BlackBerry JDE) is a fully integrated development environment and simulation tool for building Java Platform, Micro Edition (Java® ME) applications for Java® based BlackBerry smartphones.

It’s a Mobile Information Device Profile (MIDP) compliant Java ME environment for developers who wish to maintain seamless portability in their wireless applications. In addition, the BlackBerry JDE provides a full suite of interfaces and utilities to take advantage of some of the unique features of the BlackBerry smartphone.

More information here.

496 questions
0
votes
1 answer

Using invokeLater( ) in UiApplication

Can i include my try catch block with invokeLater statement in UiApplication for blackberry. What is the exact purpose of using an invokeLater mothod.And how is it to be invoked? Here is the code UiApplication.getUiApplication().invokeLater(new…
learning_fly
  • 382
  • 1
  • 2
  • 11
0
votes
1 answer

Blackberry: KeywordFilterField Search UI Improvement

I'm having a UI problem with the Search functionality of the keywordfilterfield. I want to set the search bar of the keywordfilterfield to stay freeze on the screen so that if users scroll down in a keywordfilterfield (with large data), the search…
Akinslove
  • 109
  • 1
  • 7
0
votes
1 answer

Setting Autocompletefield rowheight

I am using drawListRow to repaint the autocomplete field, but I'm having trouble to set it's field height, here is my code: autoCustomer = new AutoCompleteField(custList, style){ public void drawListRow(ListField clistField, Graphics g, …
Yanuar Lutfi
  • 143
  • 9
0
votes
1 answer

How to retrieve data that contains null value for some field in sqlite?

I am fetching rows of record from my sqlite table for blackberry application.But certain fields contain a null and i get a run time error of No stack trace at those field.How i can i continue fetching data irrespective of their null fields. This is…
learning_fly
  • 382
  • 1
  • 2
  • 11
0
votes
1 answer

Which build to be considered for use when a preprocessor is used

I have a project which needs to be used in 4.6 and 5.0 versions of blackberry. I have run same code in both the 4.6 and 5.0 versions with some preprocessor directives attached to the code (#ifndef statements which i need to use for 5.0 as facebook…
Yatin
  • 2,969
  • 9
  • 34
  • 68
0
votes
1 answer

Getting error while implementing Menu in the blackberry app

I had implemented menu in my app successfully. But I am facing one another problem, When I click on the button menu appears as context menu. I don't want that menu to be appear while I am clicking on button field. in…
BSKANIA
  • 1,317
  • 15
  • 27
0
votes
1 answer

Blackberry - How to make a count down timer and display on screen when we click on the button

I want to display the count down timer when I click the button on the screen. Please send me code for displaying the timer if we click on the button.
Roster
  • 1,764
  • 6
  • 17
  • 36
0
votes
2 answers

How to run a method only once in Blackberry Java?

I am developing an application in Blackberry. I have to write a code or a method that runs only once. The method does an action on creating the database. Something similar to Oncreate method in Android. Help of any sort is appreciated. A Y.
varunrao321
  • 925
  • 2
  • 10
  • 18
0
votes
1 answer

How can I play Alert.startAudio() through the phone speaker?

I need to play Alert.startAudio() through the loudspeaker of a Blackberry device instead of the headset. I know that I can change the Audio path through the AudioPathControl interface, but I don't know how to get an instance of AudioPathControl. I…
Vinay S Shenoy
  • 4,028
  • 3
  • 31
  • 36
0
votes
3 answers

Non-static nested thread - access from another class (Java)

I'm having some trouble creating a thread object in another class (to which it is defined); It is nested like so: public final class Sculpture extends UiApplication { final class ScreenThread extends Thread { //thread I want to…
0
votes
1 answer

Problems refactoring package on eclipse

I'm using org.json.me on my project(eclipse jde 7.0 on Mac). To provide compatibility for jde 5.0, I re-factored the package name to org.json.compatibility. The problem is that after the refactoring eclipse don't recognize the import…
Chronos
  • 1,972
  • 17
  • 22
0
votes
1 answer

How to exchange RSA keys on Blackberry

I'm developing a secure multiparty application, but I have a very big problem. The app runs over a BB device, and it connects to a java server running on a pc via sockets, in order to exchange several data. On the BB side, I create a RSAKeyPair and…
zankyr
  • 3
  • 1
  • 3
-1
votes
1 answer

Blacberry development: what do I need?

1-I'm reading about developing Blackberry applications development on Blacberry developpers web site, but the reading make me more confuse. Please, I would like to know the difference between: BlackBerry Java Plug-in for Eclipse [v1.5], BlackBerry…
-1
votes
2 answers

CustomListField using VerticalFieldManager

My requirement is to create a customlistfieldmanager by extending verticalfeildmanager, I am not able to figureout how to do this? I am not able to understand why my manager has asked me to use this method. any sort of help is welcomed!
varunrao321
  • 925
  • 2
  • 10
  • 18
-1
votes
4 answers

GPS location information issue

In my application,there is a need of take current location information, I use the follwing code; and call it buttonclick,But it doesn't work in the device and in the simulator,if any one have any idea please help. private void…