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

Blackberry - Place one invisible png bitmap above another as a new Bitmap/Image

I have a PNG image that is mostly invisble and contains some watermarks we will want to apply to another image. I have imported this PNG into a Bitmap object. I have imported the second image, taken with the device camera, as a second Bitmap…
0
votes
1 answer

How to call javascript functions from blackberry native?

I am developing an app where i need to call some methods from blackberry native to javascript. when i click on back key down event , i want to trigger the onBackKeyDown() method, which is declared in javascript. Main.java protected boolean…
code_finder
  • 1,370
  • 2
  • 21
  • 39
0
votes
1 answer

How to send email in Blackberry?

I am developing an app where i need to send email from my app. I want to send email when button was clicked in my app. I executed the sample code given by Blackberry "blackberrymaildemo" but email is not sending from device & not getting any errors…
code_finder
  • 1,370
  • 2
  • 21
  • 39
0
votes
2 answers

how to show text label on buttonField blackberry

Im new to blackberry development. Im trying to put text over a Button but its not working at all. There should be an easy solution but i'm unable to find it. Here's the code im using public class ProgramListView extends VerticalFieldManager{ …
madcoderz
  • 4,423
  • 10
  • 47
  • 74
0
votes
1 answer

BlackBerry Date Validator

Is there any easy way to validate input date in balckberry? I tried RegEx but couldn't success. Does any one have a validation method. Thanks.
KAPLANDROID
  • 1,099
  • 1
  • 12
  • 23
0
votes
1 answer

How to set cursor position in the middle of CustomEditField?

I have created a custom edit field with rounded Border. But the cursor is displaying at the top of the CustomEditField. How to change the cursor position to center of the field. Need help on this issue. Following code snippet is the implementation…
0
votes
1 answer

BlackBerry Scroll view

I had created the screen layout by positioning the each component using the sublayout and tell the relative X, Y positions. The problem is that when selecting a choice from the ObjectChoiceField or when adding a new text field programatically the…
jibysthomas
  • 1,601
  • 2
  • 16
  • 24
0
votes
1 answer

Two titile bars on a single screen in BlackBerry

I am trying to build a screen in BlackBerry. In which there should be a second title bar just below the original title bar. Also the second title bar should be fixed and it should not be scrolled with vertical scroll. Need some advice on this issue.
0
votes
0 answers

IlegalStateException: Layout requested during layout

I am trying to set some LabelField text during its layout (inside the layout() method) depending on display's orientation in the following way: LabelField roomDescLabel = new LabelField("", Field.FIELD_VCENTER) { protected void layout(int width,…
tonymontana
  • 5,728
  • 4
  • 34
  • 53
0
votes
1 answer

rapc: c: Error!: Data contribution too large j2me polish

I am working on a project that uses j2me polish and now i am receiving an error i.e Using Default Jar Packager creating JAD file [D:\MobileDevelopment\risingkarachi5_21_2012\dist\BlackBerry-5.0-de_DE-risingkarachi.jad]. jdp: Reading…
Faraz Ahmed
  • 1,245
  • 1
  • 14
  • 24
0
votes
3 answers

navigator.geolocation.getCurrentPosition(onSuccess, onError); not working

I am developing a blackberry application using html5 code.I need to find my current location and have to show that in Google map.I am running this in BB9780. It is running in simulator but it gives a wrong location(US location). But it is not…
umakanta
  • 1,051
  • 19
  • 25
0
votes
1 answer

Resize autocomplete field blackberry

I want to reduce the height of my autocomplete field.How to go about it heres my code HorizontalFieldManager hfm = new HorizontalFieldManager(); LabelField lbl = new LabelField(" Name: "); final AutoCompleteField TextField1 = new…
techie
  • 467
  • 3
  • 8
  • 23
0
votes
1 answer

Adding one manager within the other

How to add eyelid field manager to grid field manager. I have created a grid layout.Now i want to add an eyelid field manager on top of it. I have been able to add both of them separately but now am unable to use them together. Following code was…
techie
  • 467
  • 3
  • 8
  • 23
0
votes
0 answers

PleaseWait PopUp during navigation in Blackberry Application

Possible Duplicate: Blackberry - Application loading screen Pleasewait should be displayed on click then data should be loaded. Once the data is loaded, pleasewait poup should be dismissed..how to implement it? Code:1.At the end of…
DevBB
  • 35
  • 5
0
votes
1 answer

Connection Timeout in Blackberry

How to set Connection timeout in blackberry while fetching data using HttpConnection from url? I was passing ConnectionTimeout parameter in url but not working When there is no network,blanck screen should be displayed along with network error…
DevBB
  • 35
  • 5