black berry basic learning program
Hello friends, I am new in BB domain and I am working as a trainee programmer. Can you please suggest some basic programs? ...
Hello friends, I am new in BB domain and I am working as a trainee programmer. Can you please suggest some basic programs? ...
Is there a way to make application icon show up on the Home Screen (rather than in "Downloads" folder) after the app is installed? There used to be a "content-folder"(?) setting in .jad file that was supposed to do that, but with new Eclipse development plugin .jad files are generated automatically. ...
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...
Hi, I have a json url like such... [{"Image":"http://xyz.com/abc.png", "Title":"Sample"},{"Image":"http://xyz.com/def.png", "Title":"Sample2"} ] What i want to achieve is to get the image from json url and display it into a list. Beside it there must be title. There will be number of such objects so they must be in a list form. I c...
Hi I am using the following code for finding the location, this code is working fine in simulator but when i am deploying it in device it is not working.. can any one please help me out. public class LocationFinder extends Thread { public LocationFinder() { } public void run(){ Criteria criteria = new Criter...
Hi, can anybody help me in making image with rounded corners. Please help me with piece of code. Any help in this regard is highly appreciated. Also email me at [email protected] i will be very thanful to all of u. ...
I have a screen with a RitchTextField added, which has a custom font applied. I want to find the total number of lines that the RitchTextField can hold to avoid vertical scrolling. I tried to do this by getting the height of the RichTextField then dividing it by the the height of the font, the problem however is using rtfField.getHeight...
What video codecs and file formats does the Curve and Storm support? ...
Hi, I am retrieving a string of values from json url. I have done it like... for(int i=0;i<totalList;i++){ String strAlert=jsArrShpList.get(i).toString(); JSONObject joAlert=new JSONObject(strAlert); String shoppingList = joAlert.get("CategoryName").toString(); } Now i want to add the strings to a list field and i want to get ...
I know how to rotate a BlackBerry Bitmap image an arbitrary angle with drawTexturePath. But, The Rotation Anchor is at the top-top left of the image. How do I move the Anchor to the center of the image? This code uses Graphics.drawTexturedPath to rotate around top-left corner: int[] x = new int[] {0, width, width, 0}; int[] y = new i...
hello friends, i am new in Blackberry application,now i working as a junior programmer so i need j2me code for blackberry application to display battery level, pls help me ...
Possible Duplicates: j2me code for blackberry application to display battery level Get battery status from J2ME hello friends, i am new in BB so send me the code for blackberry application to display battery level thanks ...
Hi Friends, I am developing one simple application in blackberry,from my application i need to connect one HTTP link.Now i want to check what are the networks are available and strength of each network.From that list user has to select his required network. Can anyone tell me how to achieve this functionality. If u can provide me some co...
Hi all, I have a Blackberry/BES issue that I'm hoping someone might here my be able to shed some light on... I have inherited a web based application where users can add/modify their Contacts. A VB DLL runs each night that deletes each user's contacts from Exchange server, and then loads all of their contacts from the web app to Exchan...
I am using the new BrowserField2 in BlackBerry OS5 to display HTML content in my app. There are 3 options available for navigation through links in that content. CURSOR navigation uses a block cursor and actually moves through the characters of the page. Not very useful for me. POINTER navigation uses a mouse like pointer that you move...
I am testing a blackberry app that sends SMS messages. I would like to use the simulator for testing, but since SMS doesn't work on the simulator I would like to have an alternate code path to handle the interaction. What is the right way to detect that the app is being run under a simulator, instead of an actual device? ...
I am trying to draw a line two pixels wide. How can I do this? ...
![alt text][1] [1]: http://C:\Documents and Settings\imran.aslam\Desktop\Messenger Images\Messenger Images we require a code of that design for blackberry development we done the all specific images and place in location but we require the values of that images ...
Hi, I am disconnecting an outgoing call & making a call in a separate thread with following code: PhoneArguments pa = new PhoneArguments(PhoneArguments.ARG_CALL, number ); Invoke.invokeApplication(Invoke.APP_TYPE_PHONE, pa); This call initiates and behaves in proper manner in simulator but gets disconnected in my device.I have logged...
Hi, I'm working on a Blackberry application (JDE 4.6.1 + Windows machine + Elipse). Currently my workspace involves two main project Unit testing application (called unitT) my application (calle myApp) Basically,I compile the myApp project in a .jar file and I import this as a library in the uniT project (so I can reference it). The ...