here is the code:
public class MyHttp extends MainScreen{
public static final String HTTP_FILE = "local:///sources";
public MyHttp(String fileName){
BrowserField browserField = new BrowserField();
add(browserField);
try{
browserField.requestContent(HTTP_FILE + fileName);
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
how can I change the font size in this browserField?Any ideas? Thanks in advance.