Tagged Questions

Blackberry Java Development Environment

learn more… | top users | synonyms

6
votes
1answer
189 views

Open a specific email in the blackberry email app

I am trying to get a blackberry message by subject and open it in the default email app. I have this so far: Store store = Session.waitForDefaultSession().getStore(); Folder folder = ...
5
votes
2answers
2k views

how to run blackberry emulator on mac

How to run blackberry application on mac in eclipse? I have downloaded the eclipse with blackberry plugin installed in it... But i am facing problem when i am running new Hello Project in eclipse... I ...
5
votes
2answers
226 views

Blackberry: Speeding up Simulator start

Running any Blackberry Simulator for the JDE takes forever to launch. Any ideas on speeding it up? I see that it looks through a bunch of generic files while booting up, can I strip it down? All I ...
4
votes
1answer
66 views

How to get a list of background processes on BlackBerry

I'm looking for something corresponding to net.rim.device.api.system.ApplicationManager.getVisibleApplications(), but including applications that might not/do not have a UI. Any ideas? Unreasonably ...
4
votes
1answer
106 views

Type of files created in a blackberry project

I created my first Hello world project for BlackBerry and following files were created in the deliverables folder: - HelloWorld.cod - HelloWorld.cso - HellowWorld.debug - HelloWorld.jad - ...
4
votes
2answers
877 views

Turn on Flash as Light on Blackberry

I am new to BlackBerry application development and trying to make a simple application to turn my flash light on as a torch. I know there are several applications that do this already, but I would ...
4
votes
2answers
2k views

How to create blackberry screen slide animation similar to Blackberry App World?

does anyone knows how to use the blackberry JDE API to create a screen slide animation similar to Featured Items screen in the Blackberry App World? I am aware that in blackberry 5.0, there are some ...
3
votes
1answer
1k views

No BlackBerry JRE is installed?

I installed the blackberry plugin for Eclipse. When I click on new->project-> Blackberry->Blackberry Project When I type project name it says "No BlackBerry JRE is installed. Please click "Configure ...
3
votes
2answers
888 views

How to follow a “page auto-redirection” to get the response code?

I use the following code to get the returned response code of an aspx page HttpConnection connection = (HttpConnection) Connector.open("http://company.com/temp1.aspx" ...
2
votes
3answers
74 views

Center ButtonField in a FieldManager

I wanna center a buttonField in a HorizontalFieldManageri tried that code : HorizontalFieldManager ButM = new HorizontalFieldManager(Field.FIELD_HCENTER|USE_ALL_WIDTH) { public void ...
2
votes
1answer
137 views

blackberry development start confusion [closed]

Hi friend, I am a android developer , and now i am going to start blackberry developement (java) but I am confused in these two things that, eclipse with blackberry plugin will be better or ...
2
votes
2answers
139 views

Barcode scanner SDK for Blackberry

can anyone guide me to any of the efficient Barcode scanner SDK which can work in Blackberry SDK. while goggling i have got to here about ZXing lib. But i failed to find the samples and to download ...
2
votes
1answer
348 views

Multiline labelfield

I must show a string that can or not be large enough to not fit in one line in all devices, I want labelfield control to automatically show remaining text in a "new line" after the original one, I ...
2
votes
1answer
202 views

Blackberry PIM why is contact creation so slow?

The following code, which i took from the blackberry forum, takes almost 26 minutes to create 2000 random contacts using the BB PIM API on an 8500 series set. Does anyone have any idea why it takes ...
2
votes
1answer
298 views

Custom Dialog box in blackberry

How to create custom Dialogue box and add listeners to the buttons in the dialogue box in blackberry
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
3answers
277 views

How to use the RIM crypto api for TripleDES encryption with NO Padding

It seems the RIM Crypto API provides for only PKCS5 Padding mode for symmetric encryption (3Des) - as far as I know. I'm working with the JDE 4.6.0. I'm trying to provide cryptography for a ...
2
votes
2answers
487 views

Blackberry Screen Transitions on close

Hey everyone, I'm doing a Blackberry App compatible with OS4.5+ and I'd like to do some screen transitions. I know how to do them through the screen's sublayout method when I push a screen to the ...
2
votes
1answer
167 views

play a song from a URL in BlackBerry app

In my BlackBerry application, I have a radiotime URL of a song. The song may be in mp3 or mms format. How can I play it from my app?
2
votes
1answer
731 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
1answer
2k views

Blackberry kSoap2 & Soap Header

Trying to specify a custom soap header. Not sure how the SoapEnvelope.headerOut propery is to be populated. My code so far? String soapAction = serviceNamespace + "/SearchCustomer"; SoapObject rpc = ...
2
votes
1answer
414 views

Reverse Geocoding using Blackberry 5.0 API example anyone?

So the blackberry documentation shows you the following code example: import net.rim.device.api.lbs.*; import javax.microedition.location.*; public class myReverseGeocode { private Thread ...
2
votes
1answer
1k views

how to use global Event listener?

i want to communicate between two applications, whenever blackberry messenger is open then at that time my application can notified that,this blackberry messenger is started. how could i do with the ...
2
votes
2answers
622 views

Blackberry - how do you specify argument(s) to application main method without using JDE or Eclipse plugin?

I am building my application .cod file without using Blackberry JDE or Eclipse plugin. Everything works fine in the simulator if I hardcode the String arguments which my main() method needs. (I am ...
1
vote
1answer
28 views

Currency formatting for BlackBerry when locale set to French

I've writing an app that requires French language support. I'm having trouble getting currency to format correctly when the locale is set to FR. Is there any way to do this correctly?
1
vote
1answer
38 views

Retrieve Blackberry Browser session header properties

I want to know what are the header properties used by Blackberry default browser session. Since my http connection needs all the browser session header properties like ...
1
vote
2answers
65 views

Java Blackberry Refresh Field Label

I have a main class and a screen class. I have a button that launches a datepicker. When the datepicker is closed I need the label of the button to be refreshed with the selected value. How should I ...
1
vote
1answer
33 views

Blackberry jde emulator showing jvm error

I have read that by erasing non volatile storage memory and erasing removable memory will clear this error.I did the same but after that i cannot access my sd card from simulator.Every time i have to ...
1
vote
0answers
351 views

Runtime error: R6002 Floating point support not loaded

I am getting Runtime error:R6002 Floating point support not loaded when I wantbeto start simulator. I have eclipse helios with blackberry plugin, I have tried to run simulator from every rim jde but ...
1
vote
2answers
68 views

Any simulator needed for Blackberry http connection?

I'm trying to test an http connection from my blackberry simulator but nothing happens. Do I need an MDS simulator for running this App? I am using Eclipse Helios BlackBerry Java Plug-in 1.5.0. I've ...
1
vote
1answer
57 views

Which event tells you that the device is successfully started

I am making an application that auto starts when the phone restarts. I want to run some events when the phone complets its restart. The UiApp is running even before the device finishes his reset cause ...
1
vote
2answers
105 views

Create a Bitmap from an Image

I have an Image object which is a jpg picture taken by the camera and I need to create a Bitmap from it. Is there any way to do it besides using BMPGenerator class? I'm working on a commercial ...
1
vote
1answer
139 views

Keyword Search for ListField in Blackberry

I am creating a ListField. in each row of I am adding a image and 3 labelfield. Can any one tell me how to create a keywordfilterField for this... Thanks in advance I am new to blackberry. ...
1
vote
1answer
41 views

What manager is suggested for Gallery Manager?

I am working on implementing a gallery, I tried GridFieldManager for this, but the images of the thumbnail are not of same size. I sneaked through the gridfieldclass but there are no methods for ...
1
vote
2answers
61 views

How to change sdk version of application in blackberry

I am using Eclipse to develop a BlackBerry app for BBOS 6.0. I now want to support BBOS 5.0 instead of 6.0. How do I do this?
1
vote
1answer
60 views

blackberry lazyloading in clumsy layout

I am using a customlistfield by extending VerticalFieldManager, and for the row I am usingf another CustoRowManager that extends Manager. The CustomRowManager has 2 TextField and a BitmapField . This ...
1
vote
1answer
31 views

Uninstalling application (with Alternate Entry Point for synchronization) from device

I have added to the project Alternate Entry Point with argument "init", "auto-run on startup" and "do not display on homescreen" checkboxes checked, so that application could be backed-up and ...
1
vote
1answer
123 views

Integrate LWUIT with Blackberry JDE

I am trying to make an integration between LWUIT and Blackberry JDE. I am importing the LWUIT .jar file into a library project and setting the dependencies of this library with another project. I am ...
1
vote
2answers
98 views

Blackberry Package Project for Multiple OS Targets/Versions

I'm using the Eclipse plug-in and my app runs on the following simulators: 9800, 9700, 8900 ,i.e, it is compatible with OS versions 5 and 6. However , when I package the application to run it on a ...
1
vote
1answer
112 views

How to create non-Modal (Non-UI-Blocking) PopUpScreen in BlackBerry

I am working on adding a simple popUpScreen with a texual information when you hover over a CustomButton in BlackBerry. I have seen this already implemented in applications like Twitter, Facebbok and ...
1
vote
6answers
121 views

Make a notification that will run every day at 9:00 pm

I want to make an auto synchronize in my application that will happen every day at 9:00 pm. I am doing this in the way of : try { Thread.sleep(24hours); } catch (Exception ex) { } But the problem ...
1
vote
1answer
338 views

how to create an transparent customized progress bar popup screen in blackberry?

I have to create a progress bar screen to show the progress of download or during server interactions. I want it to be transparent and covers the screen fully. In center the popup progress should come ...
1
vote
1answer
70 views

Get path from a file that trigger an app

I´m downloading a file to a SD card in the BlackBerry, and when I open that file, my application run. So when my application run, I need to delete that file. The problem is that I dont know where it ...
1
vote
2answers
107 views

Is there something like SharedPreferences in Blackberry as in Android?

I want to implement a SharedPreferences kind of thing in my BlackBerry application similar to what is available in Android. What i want to do is store the login details after authenticating them so ...
1
vote
2answers
397 views

Getting JVM ERROR 517 File-system corrupt in Blackberry Simulator

When I am running PhoneGap BlackBerry WebWork application using Eclipse Blackberry JDE 6.0 i am getting an JVM Error 517 FileSystem Corrupt. but when i am running my normal Blackberry ...
1
vote
0answers
215 views

Having problem while parsing XML data from URL in blackberry

I have created one XML parsing application using KXML.I want to read the xml content in InputStream format and want to display that content on my Emulator or on console. import ...
1
vote
1answer
130 views

Blackberry Api: Writing an array of bytes to a file

I am trying to read and write metadata to/from an mp3 file. I can read the data, but I cannot figure out how to write it. I use the following code to get file access: FileConnection file = ...
1
vote
1answer
104 views

Is there any Javascript Chart Library which i can use for Blackberry browser. Without ActiveX?

Is there any Javascript Chart Library which i can use for Blackberry browser. Without ActiveX? I want to make one blackberry browser based chart report app using PhoneGap with html and javascript. ...
1
vote
2answers
142 views

Iphone Application Porting to Blackberry RIM

I have developed an application for iPhone. Is there any way to port that application on to Blackberry RIM so that i can avoid rewriting the application in Java for Blackberry RIM? I am rewriting my ...
1
vote
1answer
225 views

Blackberry and Editfields

This is a very basic thing but I cant seem to find the answer searching then net. Basically Im having issues in displaying two EditFields next to each other on a HorizontalFieldManager. I believe ...

1 2 3 4 5 6