BrowserField is a class of BlackBerry which is used to display web content within BlackBerry Java Application
-1
votes
0answers
23 views
blackberry pushGlobalScreen with browserfield issue
I've added a browser field on screen. When I call it as normal from pushscreen() method, the mouse pointer works fine, but when I call it from backgroung application thread using the ...
1
vote
0answers
26 views
Browser filed link click event
Hi I am developing an application in Blackberry java using Eclipse IDE. I have added a Browser Filed on the screen. And the Browser Filed contains many link (). I want to know which link the user ...
0
votes
0answers
43 views
Displaying image in blackberry browser field
I have this html that comes from a web service and inside it there is an img tag, the problem is that when displaying the html content on a BrowserField, the images can“t be resolved, so they won't ...
0
votes
0answers
35 views
How to overwrite default bridge datagram size
i create a simple blackberry browserfield2 application to display web content, the main function of the application is to move/upload local files ..mostly images to a file server, i have no problem to ...
0
votes
0answers
94 views
Blackberry BrowserField2Demo redirect
I'm working with the JDE 7.1 in BrowserField2Demo and want to know how to intercept the "pre-load" event. The "OLD" BrowserFieldDemo had events such as "Event.EVENT_URL_REQUESTED" that would allow URL ...
1
vote
1answer
99 views
Blackberry BrowserField / BrowserContent
I'm working with the BrowserFieldDemo (JDE 7.1.0) and on the event Event.EVENT_BROWSER_CONTENT_CHANGED, a BrowserContent object is retrieved with
(BrowserContent) ...
1
vote
1answer
188 views
White screen is displaying while loading local HTML files in Browser Field?
I am using BrowserField to display some local HTML files in my application. It is displaying the HTML files properly. But while starting of the screen it is displaying some white screen (background). ...
1
vote
1answer
121 views
BlackBerry - Open URL in Browser
On clicking the LabelField, I want to open the browser with the website link mentioned in the LabelField. I have tried to add navigation click to the LabelField but it does not work. It appears that ...
1
vote
0answers
76 views
BlackBerry browserfield find and highlight text
I'm writing an application that includes a BrowserField that I am using to show a HTML file. What I would like to do is show the user a dialog that they can type some text into and then find the ...
1
vote
1answer
95 views
get absolute url on handle ressource request on blackberry
I use this method the get the urls of ressources contain on web page
public InputConnection handleResourceRequest(BrowserFieldRequest request) throws Exception
{
final String url = ...
0
votes
0answers
116 views
Too Many Threads Error blackberry
I have an exception "Too many threads Error" when I try to pass many urls to browserfield
Can any one help me?
public static void webpage(int index) {
String url;
try {
int size = ...
-2
votes
1answer
92 views
how to authentication given username password to login in Browserfield in blackberry
I am new to blackberry. I want how to authentication in browserfield
BrowserField web;
String Usname="yahoo@yahoo.com";
String password="123456788";
setTitle("sample");
...
0
votes
0answers
49 views
How to implement caching in Blackberry?
Is it really possible to cache html pages in Blackberry ?
I'm displaying web pages in BrowserField inside Blackberry application. And I want to cache the pages that has been viewed by the user, so ...
0
votes
1answer
114 views
Is it possible to make the browser field to fit to the actual size of the device screen?
I'm using browser field2 to load the content of a URL inside the application. The data gets loaded successfully.
But my requirement is to shrink the data and display that in such a way that without ...
0
votes
0answers
32 views
how to store and get the cookies in blacberry?
i am new to blackberry development. i have one problem in my application i used Browserfield in my application. that application should store and get the cookies.how can i store and get the cookies ...
0
votes
0answers
119 views
BrowserField “Error displaying content for: local:///index.html. error message. failed to create renderer.”
I was trying to load a HTML page into BrowserField in blackberry Curve 9220. It was working properly but sometimes i got blessing from device with message below.
BrowserField "Error displaying ...
0
votes
0answers
75 views
Navigation through a page when using BrowserField in BlackBerry
I am loading a web page as follows.
// RegBrowserFieldConfig extends BrowserFieldConfig
RegBrowserFieldConfig regBrowserFieldConfig = new RegBrowserFieldConfig();
// RegBrowserFieldListener extends ...
1
vote
1answer
133 views
Getting web response when button clicked in BlackBerry
I have loaded a web page in BB as follow
//RegBrowserFieldConfig extends BrowserFieldConfig
RegBrowserFieldConfig regBrowserFieldConfig = new RegBrowserFieldConfig();
//RegBrowserFieldListener ...
0
votes
1answer
79 views
Usage of Object invoke(Object thiz, Object[] args) method in BlackBerry
Can anybody please explain me how the arguments in invoke method can use correctly.
browserField.extendScriptEngine("interesting.test", new ScriptableFunction() {
public Object invoke(Object ...
2
votes
0answers
136 views
Bitmap from BrowserField in BlackBerry?
In my application I am loading some HTML content in BrowserField. I want to get the browser content as a Bitmap. I used following code.
Display.screenshot(Display.getWidth(), Display.getHeight());
...
0
votes
1answer
171 views
How to code for horizontal scrolling for BrowserField in BB
I am new to BB development. I want to load a WebView inside my BB application without using the default device browser to load the URL. Following is the code I have used inside my BrowserScreen class ...
0
votes
1answer
222 views
How can I load HTML page in BrowserField?
I have one HTML page shows map which i want to display in BrowserField.
Here is my code.
BrowserFieldConfig _bfConfig = new BrowserFieldConfig();
...
0
votes
1answer
76 views
Blackberry list field without canvas
Is it possible to create a customized list field in BB, where each row will have 4 different labels, and a bitmap field, without implementing the drawListRow method?
Since drawListRow uses canvas I ...
0
votes
0answers
129 views
how to display image from sdcard to html page in blackberry
Is there a way to display an image in html tag from sdcard in Blackberry?(No webworks)
Issue:I can able to capture image via Camera and saving it on sdcard. Then i am retrieving image url, convering ...
0
votes
0answers
19 views
Blackberry os5 browserfield supports posting data on https url? [duplicate]
Possible Duplicate:
posting data on https url through BlackBerry BrowserField in os5
i am working with blackberry os5
i am posting data on https url through blackberry Browserfield but it ...
1
vote
0answers
136 views
Blackberry OS 5 web application performance tuning
We have a web application in jquerymobile 1.0.1 and jquery 1.7.1. For BB devices we have created a wrapper application using BrowserField JDE 5 API, which is used to launch the application UI. Using ...
2
votes
1answer
308 views
Blackberry BrowserField white empty page issue
Hi i want to show html content in BrowserField. I used the code blove to do this but i only see white empty page.
BrowserField demo = new BrowserField();
String ...
3
votes
0answers
266 views
How to make background of BrowserField transparent in Blackberry
I am using BrowserField component of RIM BB. It is right now displaying a white background. I want make a transparent background, so it could match with the Manager's background color.
I had tried ...
2
votes
1answer
347 views
How to display HTML Image tag in BrowserField in RIM Blackberry
I want to display HTML tag in RIM BB component BrowserField.
String str ="<html><body><p><img alt=\"bun\" src=\"http://adodis.in/ram/services/images/stories/food/bun.jpg\" ...
3
votes
1answer
504 views
BrowserField and lost connection
I have an app that uses a browserfield to connect to a web-page.
All is working ok and the simulator shows the right page.
If I set the simulator Network Properties to "Out of Coverage" and click on ...
1
vote
0answers
174 views
Blackberry BrowserField error loading url
I am using verticalfield manager to load data and browserfield to load url but both are in the same screen.
I am just swapping both as per my need using replace(field1,field2). But when i am trying ...
0
votes
0answers
151 views
Browser field in Blackberry not getting updated with the HTML
I have created an Ad SDK for Blackberry using browser field. Using a timer, Ads are fetched from server at certain intervals and is displayed in Browser field. But after using the app in which the SDK ...
3
votes
3answers
699 views
Blackberry 5.0 - BrowserField handle link clicked
I am trying to handle an event in BrowserField when the user actually clicks a link.
I studied BrowserFieldListener, tried its documentCreated() method but that gives me a response when the page ...
-1
votes
1answer
83 views
browserField memory management
I am doing application based on the browserField and everytime mobile show that low memory in the device,I searched on the forum and I found a tutorial but I didn't implement it as the tutorial said ...
0
votes
0answers
184 views
blackberry browserfield speed up
I am working on browser field 2 and I have a problem it loads in very slow way, I understood that the problem in images that's loaded from the server, I tried the CacheManager but the problem still ...
0
votes
2answers
300 views
Open PDF file in blackberry?
How do I open a PDF file through the BB default browser? Currently I am using the below code, but it is throwing a HTTP Error 500: Internal server Error
public static void openBrowser(String url, ...
-1
votes
1answer
278 views
how to get url from browser in blackberry?
In BB when user typed any URL into the browser and hit enter.... then is it possible to get/track/fetch that url..???
shuld i implement any ineterface in my application.......that can track, when ...
1
vote
1answer
615 views
Blackberry Browserfield example app not launching
I'm attempting to run a very simple Blackberry/Java application which implements the BrowserField class. When I launch it in the simulator it just hangs. When I launch it on my device nothing ...
0
votes
0answers
279 views
Blackberry BOLD 9900 Refresh Issue with Browser Field when device is idle
Application Overview:
We are developing a Hybrid Blackberry Web Application with Web Container rendering HTML5 pages saved and retrieved locally within the application.The dynamic data will be ...
0
votes
0answers
253 views
Execute JavaScript in BrowserField Blackberry
How can I run this HTML code in Browser Field. It always gives a time out exception even if i had set it BrowserFieldconfig.setProperty(BrowserFieldConfig.JAVASCRIPT_TIMEOUT, new Integer(100000));
...
0
votes
2answers
608 views
Blackberry BrowserField Base Url
I have been trying to show some HTML content from SD card in the browser Field and every time
instead of rendering the HTML data,browser Field renders the Base URL.I tried to find the reason for the ...
0
votes
0answers
177 views
How to read “target” html attribute in BrowserField of BlackBerry Application
I have made a simple application in BlackBerry. In this application, a BrowserField is added to load a website. Now I would like to open any link with target="_blank" to native browser and perform ...
-6
votes
1answer
133 views
how to load html on Blackberry4.6 os version
I am new to Blackberry app development and I want to load HTML in a browser field.
I'm able to load HTML for version 5, 6 and more, but it's not loading in OS version 4.
It shows:
Error JVM 104 ...
2
votes
0answers
117 views
Blackberry BrowserFieldHistory Does Not Get Updated by history.go(-1) javascript
Have an application that is using a BrowserField. The web site that is rendered within it all works fine except for an issue where pages have a back button that executes the following javascript: ...
6
votes
1answer
468 views
Blackberry BrowserField Issue -
I am using 'net.rim.device.api.browser.field2.BrowserField' for loading an html page with 2 scripts.
script 1 (Jquery)
script 2 (Jquery mobile)
The 2nd script gets loaded twice. Its like the ...
0
votes
2answers
384 views
Loading dialog BlackBerry Browserfield
How can I add an loading dialog to my Browserfield when the page is loading?
Thanks
1
vote
1answer
1k views
Blackberry webview can not connect to internet and/or display a web page
I am creating a simple app using Eclipse and Blackberry JRE 7.0 as per the example given at:
http://docs.blackberry.com/en/developers/deliverables/11958/Configure_a_browser_field_825671_11.jsp
I am ...
1
vote
1answer
262 views
BrowserField crashes in BlackBerry 7
I am trying to create an application on BlackBerry 9930 simulator that authenticate the user with Facebook, using the BlackBerry Facebook API. It connects to the login page fine, but after that the ...
2
votes
0answers
447 views
Blackberry BrowserField2 extreemly slow loading times
I am currently trying to load some pages with a BrowserField2 but the loading time takes way to long. Loading the same page in the OS Browser works fine (<5 sec) but loading it within my app takes ...
0
votes
1answer
550 views
Blackberry simple progressbar for BrowserField2
In my app I have a BrowserField2 loading different pages and I want to show a simple spinning progressbar/indicator. As simple as possible really, without percent etc. - just a small animation to ...

