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
2 answers

Module attempts to access secure API: RIM Blackberry

I used the "Sign with Signature Tool" in Eclipse to sign my app. I see that signer ids RRT, RBB and RCR are all signed for the cod files (JRE version 4.5). I try to deploy to a 5.0 device and I see the "Module attempts to access secure API" error.…
Dave
  • 4,038
  • 9
  • 45
  • 57
0
votes
1 answer

Push service not registering on blackberry curve

For some reason i keep getting a PushApplicationStatus.STATUS_NOT_REGISTERED when i try to register for push services on blackberry curve. It works great on the torch, storm, but having so much problem on the bold and curve. Here's the code on how i…
Frank
  • 3,073
  • 5
  • 40
  • 67
0
votes
1 answer

unwanted dialog appears when pressing enter key

I am developing an online radio project. In the middle of hearing music, if the user presses the enter key, sometimes a dialog is displayed. What is the remedy for this?
Jisson
  • 3,566
  • 8
  • 38
  • 71
0
votes
1 answer

BlackBerry BrowserField executing javascript

I tried a simple javascript [Example: document.getElementById("mydiv").style.display = "none";] on a web page and tested it on BlackBerry 4.5 simulator browser and it worked. Now I have an app (JRE 4.5 - Eclipse Plugin) with a BrowserField embedded…
Dave
  • 4,038
  • 9
  • 45
  • 57
0
votes
1 answer

Blackberry Browser isn't working on handhelds but it does in the simulator

I'm trying to launch the Blackberry browser from within my app and it works for the simulator, but it doesn't for the device. This is the code: public static void launchBrowser(String url) { BrowserSession session =…
0
votes
1 answer

Blackberry SQLite path exception

I developing an app which uses sqllite to store some data,I use the code from http://docs.blackberry.com to create database,create tables etc.Its works fine in my simulator But not in my blackberry bold9000. I got the exception…
0
votes
1 answer

open shazam from my blackberry application

I need the code open shazam(other intalled applications in the phone) if its installed. How can I check whether shazam is installed in a phone,and if installed how can I open it from my app?If any one have idea please help.Thanks in advace.
Jisson
  • 3,566
  • 8
  • 38
  • 71
0
votes
1 answer

Compatibility Mode Blackberry OS 4.7

I am building an app using JDE 4.5. I need to support 4.5 device OS versions, I can't use JDE 4.7. Therefore, I can't use the Screen.getVirtualKeyBoard.setVisibility(VirtualKeyboard.HIDE) in my code, as 4.5 doesn't support the virtual keyboard api.…
Dave
  • 4,038
  • 9
  • 45
  • 57
0
votes
2 answers

sqlite works on simulators but not on device

My app makes some database connections (sqllite) and performs some basic database operations (insert,delete,search),I wrote some code for this,Its worked perfectly in simulator but not in phone,Can any one help overcome this ,Thanks in advance.I…
Jisson
  • 3,566
  • 8
  • 38
  • 71
0
votes
1 answer

Blackberry jde : how to upload an image in server using MultipartPostData

Here is the problem I am trying to send an image to a remote server using the class MultipartPostData. I build my PostData with the following code : PostData body = new MultipartPostData(MultipartPostData.DEFAULT_CHARSET,…
obo
  • 1,652
  • 2
  • 26
  • 50
0
votes
1 answer

Blackberry OS 4.5 and higher with jQuery

I know this question has been asked several times but I didn't find the answer I was looking for. I am creating one Blackberry App (using Browserfield API) to invoke mobile web pages that would be supported on all devices from OS versions 4.5 and…
Dave
  • 4,038
  • 9
  • 45
  • 57
0
votes
2 answers

loading indication in the ui screen itself with out using seperate screen or popup

I want to display a lodaing screen when user requests some http connections.I got some good samples from stackoverflow and google,But all of them displays the loading screen using a seperate screen.I want to show it in the same screen where user…
Jisson
  • 3,566
  • 8
  • 38
  • 71
0
votes
1 answer

Using navigationclick in association with a listfield on Blackberry

public class CategoriesUI extends MainScreen implements ListFieldCallback { //categoryimport.listingnodup is the current categories with no duplicates public Categories categoryimport = new Categories (); //brings in all infromation from …
jwheeler
  • 25
  • 1
  • 5
0
votes
1 answer

Blackberry App Development OS 4.5 jQuery Mobile

Has anyone used jQueryMobile on Blackberry OS 4.5, 4.6 or 4.7? Can you give me any feedback about the functionalities that the native browsers on those versions would or would not support? I don't need any media related functionalities but other…
Dave
  • 4,038
  • 9
  • 45
  • 57
0
votes
1 answer

custom control in blackberry using jde

I want to make custom control which consists of a LabelField and Textbox. How can i make a custom control using jde as IDE for blackberry. Thanks in advance.