如何在我的视图中使用黑莓浏览器hiearchy?

问题描述:

我需要在我的应用程序视图中显示一些链接。但我找不到任何关于它的事情。可能吗??如何在我的视图中使用黑莓浏览器hiearchy?

我想将浏览器内容(字段)放在操作系统的灰色区域< 5.00?

must be this image

+0

去这个链接:http://*.com/questions/7606462/how-to-stop-browserfield-requestcontent-method-when-back-to-mainscreen-on- bla/7607061#7607061 将链接(url)作为参数发送给该构造函数;并调用屏幕; – alishaik786 2012-01-16 10:42:04

+0

Browserfiled是inse BlackBerry API 5.0.0。我必须为所有版本使用字段。也许我需要从字段扩展customBrowser? – atasoyh 2012-01-16 12:31:38

如果你想显示的字段,它是一个超链接使用下面的代码。

package com.myApp.controls; 

import net.rim.device.api.ui.Color; 
import net.rim.device.api.ui.Field; 
import net.rim.device.api.ui.Font; 
import net.rim.device.api.ui.Graphics; 
public class HrefField extends Field { 

private String content; 
private Font fieldFont; 
private int fieldWidth; 
private int fieldHeight; 
private boolean active = false; 
private int backgroundColour = Color.WHITE; 
private int textColour = Color.BLACK; 
private int[] drawFocusColors; 

public HrefField(String content) { 
    super(Field.FOCUSABLE); 
    this.content = content; 
    fieldFont = Font.getDefaultFont(); 
    fieldWidth = fieldFont.getAdvance(content) + 2; 
    fieldHeight = fieldFont.getHeight() + 3; 
    drawFocusColors = new int[] { Color.ORANGE, 
      Color.ORANGE,Color.RED, 
      Color.RED}; 
} 

public void setColours(int backgroundColour, int textColour) { 
    this.backgroundColour = backgroundColour; 
    this.textColour = textColour; 
    invalidate(); 
} 

public void setBackgroundColour(int backgroundColour) { 
    this.backgroundColour = backgroundColour; 
    invalidate(); 
} 

public void setTextColour(int textColour) { 
    this.textColour = textColour; 
    invalidate(); 
} 

public void setMaskColour() { 
    invalidate(); 
} 

public void setFont(Font fieldFont) { 
    this.fieldFont = fieldFont; 
} 

public int getPreferredWidth() { 
    return fieldWidth; 
} 

public int getPreferredHeight() { 
    return fieldHeight; 
} 

protected void layout(int arg0, int arg1) { 
    setExtent(getPreferredWidth(), getPreferredHeight()); 
} 

protected void paint(Graphics graphics) { 
    int[] X_PTS = new int[] { 0, fieldWidth, fieldWidth, 0 }; 
    int[] Y_PTS = { 0, 0, fieldHeight, fieldHeight }; 
    if (active) { 
     graphics.drawShadedFilledPath(X_PTS, Y_PTS, null, drawFocusColors, 
       null); 
    } else { 
     graphics.setColor(backgroundColour); 
     graphics.fillRect(0, 0, fieldWidth, fieldHeight); 
    } 

    graphics.setColor(textColour); 
    graphics.setFont(fieldFont); 
    graphics.drawText(content, 1, 1); 
    graphics.drawLine(1, fieldHeight - 2, fieldWidth - 2, fieldHeight - 2); 
} 

protected boolean navigationClick(int status, int time) { 
    fieldChangeNotify(1); 
    return true; 
} 

protected void onFocus(int direction) { 
    active = true; 
    invalidate(); 
} 

protected void onUnfocus() { 
    active = false; 
    invalidate(); 
} 

}

+0

不,谢谢。我会打开一些网址。 – atasoyh 2012-01-16 12:19:59