Hi,
I am new to Blackberry Development.This is my first Question for you people.
I am creating a search box for my project. But it looks like blackberry doesn't have an internal api for creating single line Edit field. I have created a Custom Field by extending BasciEditField overriding methods like layout, paint. In paint i am drawing a...
Hello, i want to redirect peaple who goes in my site to other page if they are using a mobile browser with a php o java script. Thanks
...
Hello All,
What I am trying to do is display a simple web page in my application (no javascript,cookies or any scripting and not trying to detect any events such as mouse click etc.).
I am using the code below and right now all I get is empty screen .. I know that the application is accessing the internet (the data transfer arrow flash...
Hello,
I am maintaining an existing BlackBerry application (implemented as a MIDlet). The application contains a number of data files that get bundled with the app as resources. Some of these data files need to be updated for a new version of the app. When the user goes to install a new version of the application (via URL of Jad file), i...
I'm writing a Blackberry app. I have a custom list field where I can select an item in the list which pushes the edit screen onto the stack. I edit the item and save, and when I pop that screen off so I am back on my list screen, I want to view the update I just made reflected in the list. I have done this on other screens which just had...
I am profiling my BlackBerry application (a game) with the options 'In method only' and 'Time including native method'. Under the 'All methods' node (after a decent run of the game) the single most time consuming function is Graphics.updateDisplay0() with over 50% of the run time spent there.
I don't quite know what is the purpose of th...
I am writing an app for Blackberry and I have the following problem:
I have implemented a custom field by extending the Manager class. The field is quite simple, it consists of a label and two check boxes, yes and no. The fields are laid out so that the label is on the left and uses as much space as it can while still allowing room for...
I have developed a Blackberry app for the 4.5 os series.
It works fine on all device except on the storm 1 (storm2 untested).
The problem (on the storm) is that the main screen of my application (and all other screens in fact) is shown with the virtual keybord. But there is no text field displayed on the screen that would justify the VK...
hey all,
I have to make a SMS sending application in .NET, which uses the attached Blackberry handset(blackberry tour 9630 to be precise) to send SMS. I have never worked on smartphone application development, so want help in doing this. I searched SO for an answer and found one question, but its in java and i think that code would run o...
The app I'm working on has a self contained database. The only time I need HTTP request is when the user first loads the app.
I do this by calling a class that verifies whether or not a local DB exists and, if not, create one with the following request:
HttpRequest data = new HttpRequest("http://www.somedomain.com/xml", "GET", this); d...
Hi all
I am adding three CustomButtons in verticalFieldManager, but there is no spacing between the buttons. all are coming one after the other.
...
My code is a simple modification to the camerademo, which converts the byte array to encoded Base64 string Single line of code like so:
.
.
.
//THIS KILLS THE SIMULATOR
strImage = Base64Encoder.encode(_raw);
.
.
.
This variable (strImage) is not used, so the code (on simulator) runs fine. If I try and use the string, e.g. Insert int...
Hi all
i want to crop a part of Image ,for that i am using following code:
int x=20;
int y=50;
int [] rgbdata=new int[(0+width-x+height-y)* (image.getWidth())];
image.getARGB(rgbdata, 0, image.getWidth(), x, y, width, height);
cropedImage=new Bitmap(image.getWidth(),image.getWidth());
cropedImage.setARGB(rgbdat...
Advance Thanks.i am new to blackberry developement.i try the following code for creating alert using lcdui package.but nothing will coming when i am running
Plz help me.
package alertpack;
import javax.microedition.lcdui.Alert;
import javax.microedition.lcdui.AlertType;
import javax.microedition.lcdui.Command;
import javax.microeditio...
I am getting a timeout with the following code at readUTF. Any idea why?
hc = (HttpConnection) Connector.open("http://twitter.com/statuses/user_timeline/" + username + ".json");
int rc = hc.getResponseCode();
if (rc != HttpConnection.HTTP_OK) {
throw new IOException("HTTP response code: " + rc);
}
DataInputStream dataInputStream =...
I would like to store a file on SD card, lets say an mp3 file and encrypt it.
And would like other apps to be able to play them but BB automatically decrypt them?(Does DRMManager do this?)
Basically, I would like to keep the mp3 files locked to the BB device. If they tried to open the mp3 on say a desktop or another BB, they won't be a...
Has anyone come up with a good solution for deploying BlackBerry applications across different environments?
My example is storing URLs and Authentication information in code. In most cases, a developer is going to have a different set of URL's to test against when developing the application vs what the end user is going to hit.
The id...
Hi,
I am adding dynamic number of buttons in a Blackberry application and trying to get different events on each button click. I am not able to apply the setchangelistener() for these array of buttons as once the loop finishes after adding all the buttons, the events gets generated only for the last indexed button.
If I make us of getI...
Hi all,
I have an application of mine on AppStore. But one user is complaining that he can not install the application on his device(Curve 8900) and it's giving error
"Error starting AppName
$28NonTouch$29:
Module 'AppName
$28NonTouch$29-2' has
verification errors."
Now how come it is possible that other's users are able to download ...