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
1
vote
1 answer

blackberry app not running on gprs connection in device

Hi am trying to run my app on blackberry device using Edge gprs connection but its not rendering the pages.i have tried lot to get the connection,also i tried the various links to solve, one of the simple code i have attached here, kindly guide me…
1
vote
1 answer

BlackBerry App for different BlackBerry devices - Design Suggestion

I am writing an app and willing to package it for different BlackBerry devices with different properties/features and resolutions. My problem is how do I go about creating a DeviceConfigurationManager that will give me device specific…
1
vote
0 answers

Blackberry Insert search icon in textfield?

Scenario: I want to add a search icon in the text field. And after I have written query and press enter then the search should work from the list view. What I want: I only want to place search icon in the textfield which I will press after my query.…
Ahmad Shahwaiz
  • 1,432
  • 1
  • 17
  • 35
1
vote
1 answer

Runtime Exception in Send Message in BlackBerry

I am getting RunTime Exception when I am Running this code..Please Go Through it and Help me if you have any idea. Thanks.. private void sendSMS(String phone, String message) throws IOException { // TODO Auto-generated method stub …
1
vote
1 answer

Blackberry Java- Labelfield Listener. I want if anyone click a label then it should trigger a function/

I want if anyone click a label then it should trigger a function. Like I want if a user clicks a label then it should go to another page. Following is the code I tried. Thanks in Advance!! LabelField joinGroups = new LabelField("Join…
Ahmad Shahwaiz
  • 1,432
  • 1
  • 17
  • 35
1
vote
1 answer

BlackBerry Simulator excessive "No debug information found" warnings

I am getting a lot of warnings while running the BlackBerry simulator in debug mode on Eclipse BlackBerry JDE v 7. From the error log: No debug information found for 'net_rim_bis_client__en' (4e54f479). No debug information found for…
1
vote
2 answers

How to set Icon for BlackBerry Application in JDE NetBeans

I develope application for BlackBerry, I use JDE 7.1.0 and NetBeans 6.9 How to set Icon for BlackBerry Application in JDE NetBeans ?
Muhammad Cahya
  • 288
  • 4
  • 13
1
vote
1 answer

.cod installed on device using Javaloader, but can't find the app on device

I'm loading my blackberry cod onto my USB connected BB Curve using the following : /Users/JElsey/Development/tools/eclipse/plugins/net.rim.ejde.componentpack6.0.0_6.0.0.43/components/bin/javaloader -u load ./bin/SmartConf-BB/SmartConf-BB.cod RIM…
Jimmy
  • 16,123
  • 39
  • 133
  • 213
1
vote
0 answers

How to get google map searched location lat & long in blackberry application?

I have used following code to call Google Maps which is installed in Blackberry device public void invokeGMaps(GMLocation l) { URLEncodedPostData uepd = new URLEncodedPostData(null, false); uepd.append("action", "LOCN"); …
1
vote
1 answer

BlackBerry Localization: Pick specific resource locale issue

I need to know if it is possible to select a specific resource locale for my language. Instead of changing my phone's language setting, can I in code make use of it depending upon some conditions? Here's a piece of code I wrote: A user should be…
Atif Imran
  • 1,899
  • 2
  • 18
  • 33
1
vote
1 answer

HttpConnection not working in real device -Blackberry

this is my code public String Serverconnection(String url) { String line = ""; if (DeviceInfo.isSimulator()) { url = url + ";deviceSide=true"; } try { HttpConnection s = (HttpConnection) Connector.open(url);//*i…
prakash
  • 644
  • 4
  • 21
1
vote
1 answer

How to stop progressbar in blackberry

In BlackBerry, my application is working perfectly fine. But one Requirement is when I load data from server, a progress bar is showing. If it takes so much time to load data from server, then I want to stop the progress bar. In BlackBerry, on back…
1
vote
0 answers

Image Recognition BlackBerry?

I'm trying to develop a sort of AR for BlackBerry devices. Trying to achieve the best compatibility for old devices, if it's possible I would like to make it for BlackBerry OS 5 / 6. Due to lack of hardware performance, I'm not trying to show a…
1
vote
4 answers

Show only numeric keyboard for EditField

I have EditField. I want to show virtual keyboard only with number, without letters. Is it possible?
Tim
  • 1,606
  • 2
  • 20
  • 32
1
vote
1 answer

Unable to connect to internet in Blackberry device?

I am developing an app where i am using browser field to load html files in it. My code is as follows. Main.java //pushing screen to browser field page.. public Main() { // Push a screen onto the UI stack for rendering. …