Please can anyone help me with my issue - what is the way to know that browserfield2 has finished loading in Blackberry. I need to set some options after loading. Does browserfield2 have some methods to show that?
Asked
Active
Viewed 1,733 times
1 Answers
8
Here is some code that will get you started.
BrowserField browserField = new BrowserField();
BrowserFieldListener listener = new BrowserFieldListener() {
public void documentLoaded(BrowserField browserField, Document document) throws Exception
{
// the document has loaded, do something ...
}
}
browserField.addListener( listener );

Michael Grassman
- 1,935
- 13
- 21
-
Helped enough to count towards an answer? – Michael Grassman Jun 19 '10 at 18:19
-
3To accept, you should "check" the answer (so the check becomes green), not only up vote. – DecodeGnome Jan 24 '12 at 16:17