blackberry-eclipse-plugin

navigate one screen to another screen based on time period in blackberry-Eclips

Hi Friends, I am using Blackberry eclipse environment , for blackberry application i am using start up screen with process bar , i am filing progress bar using timer, after process bar 100% completed then need to navigate the screen to another screen, i am checking like this timer.cancel(); if(i>=99) UiApplication.getUiApplication...

Blackberry - System.out.println() using eclipse plugin

Hello All... I am just entered into the Blackberry Arena.. I am using Eclipse Plugin for running my testing application to simulator. So, In my code somewhere I have add System.out.println("Print"); statements, but by debugging or running app to simulator, I couldn't find any log statements printed to eclipse console. Is there anythi...

Credential​s do not exist in Curve 8520 while using wi-fi

Hi all, I have the following exception while i try to login in my application in curve 8520 using wi-fi "Credentials do not exist" same application works before. but suddenly this exception comes. i can access the internet services as well as open webpages using wi-fi. but at the time of login my application "Credentials do not exi...

Set color for button field in blackberry using Java

How can I set the color for a button field in Blackberry using Java? Thanks. ...

configuring UltraLiteJ with eclipse plugin

hi all i am using eclipse plug-in for developing blackberry application, i want to use database in my program i am not getting a proper tutorial or any stuff for configuring Ultralitej with eclipse plug-in. can any one please provide me with any tutorial or any guidance. Thanks a lot ...

Blackberry CLDC application using netbeans?

I want to develop Blackberry CLDC application using netbeans , but BB development plugin for Netbeans only supports the J2me development. any ideas how to resolve this? ...

Naming Convention for Blackberry Development

I have gone through with some of the sample examples of blackberry. And in some classes I have found some variables are starting from _ like _address and some of them are ALLCAPS. So, i guess it's bit different then the basic Java naming conventions. So, can anybody let me know that is there any difference between Java and blackberry ...

blackberry switching app from 4.5 to 4.6

I have this application developed for Blackberry 4.5. I´m using Eclipse, and I want to test my application for blackberry 4.6. What´s the easy way to generate the alx and cod file to install my app for this version? ...

Call a web service and parse xml response in blackberry

Hello All... Currently I have a ready design for blackberry application. Now, I need to call the web service in my app, and that web service will give me some xml response. So, I need to parse that response from xml to some POJO. So, for parsing the xml response should I go with the basic DOM praser, or should I use any other J2ME sp...

Parse xml response and display it to main screen in blackberry

Hello All... I have following kind of xml response from some http://url.com <ArrayOfMovie> <Movie> <movieID>7</movieID> <name>Badmaash Company</name> <starCast> Shahid Kapoor, Anushka Sharma, Meiyang Chang, Vir Das </starCast> <releaseDate>2010-05-07</releaseDate> <moviePoster>bc/bc.jpg</moviePoster> ...

Blackberry XML Parsing Application not working

Hello All... I found one sample application from the Blackberry knowledgebase. From that application I have put that sample application on my eclipse plugin, and the code is as follows : import javax.microedition.io.*; import net.rim.device.api.ui.*; import net.rim.device.api.ui.component.*; import net.rim.device.api.ui.container.*; i...

developing application for diffrent screen size

Hi all i am developing a application on jde 4.5 . 4.5 os is supported by Pearl , Curve , Huron, so the application which i am developing will support all the above devices but the problem which i am facing is screen size. Screen Size of pearl mobiles is 24 X 260 , curve 320 X 240 , huron 320 X 240. I am facing the following problem b...

How to create a global tab bar

Hi i am creating a application which is having a global tab bar .bar will have 4 buttonsand will be seen on every screen. i am not able to find any way , can any one please help me out. its urgent.. Thanks alot ...

CustomButton Field not aligning in the center

Hi all I have created a custom button and i am placing the bunch of Custombuttons in a verticalfieldManager , I have aligned the verticalField Manager in the center. when i am creating a default buttonField then verticalfield Manager is able to align the buttonfield in the center. but when i am assigning custombuttonfield in the vertica...

Blackberry - "[projectname].debug file is missing" and "I/O Error: Cannot find program "jar"

I'm running eclipse with the Blackberry Java Plug-in, working on a 1.4.5 Blackberry project. The project has been building and debugging in the emulator normally until I started getting: A prompt saying "[projectname].debug file is missing". A message in the Blackberry Packaging Console saying "I/O Error: Cannot find program "jar": Cr...

Line break in textOutputField

here is my code. i get the data from web and store in bufval and print textoutputfield but we require a line break a specific position in the textoutput field if we use line break in php page where we get the data the output is show msg and attach this (). String strResult = new String(bufVal); synchroniz...

Invoking google Map

Hi I am using the following code to invoke Google map in my simulator. i have already installed Google map in my simulator. int mh = CodeModuleManager.getModuleHandle("GoogleMaps"); if(mh > 0) { try{ URLEncodedPostData uepd = new URLEncodedPostData(null, false); uepd.append("action","LOCN"); uepd.append("a", "@latlon:"+lat+...

how can i create the setup file for blackberry phones using eclipse?

setup file creation for blackberry phones using eclipse environment ...

Why "SecondaryResourceFetchThreadcan resolve" error can show?

i need help to solve the problem to remove "SecondaryResourceFetchThreadcan resolve" error ...

Field change listeners on a label

Hi, I am retrieving a list of objects from json url and displaying it like a list by adding a label field and a seperator. Now, i want to make each label clickable so that each label redirects to a seperate url. On clicking the label a seperate screen must open with the json data of the corresponding url. So, can anyone tell me how to a...