ブラックベリーの開発は初めてです。ボタンの上にテキストを配置しようとしていますが、まったく機能していません。簡単な解決策があるはずですが、見つけることができません。使用しているコードは次のとおりです
public class ProgramListView extends VerticalFieldManager{
private int _height;
private int _xPos;
private ButtonField evaluateButton;
//height is used to define each item height
//xPos is used to define each items position on screen
public ProgramListView(int height, int xPos){
this._height = height;
this._xPos = xPos;
evaluateButton = new ButtonField("Evaluate", ButtonField.CONSUME_CLICK){
//put methods in here to change the button's position
};
super.add(evaluateButton);
}
前もって感謝します。