2
我在我的設計中使用了較小的按鈕,我想要一個帶有較小按鈕的 ChoiceField。按鈕技術不像我期望的ChoiceField那樣工作。我能夠改變大小,但按鈕呈現不合格。如何更改ChoiceField中按鈕的大小?BlackBerry ChoiceField按鈕尺寸
ChoiceField choiceMode =
new ChoiceField(
searchModel.getPickerLabel(SearchOptions.PICKER_MODE),modes.length,0) {
public Object getChoice(int index) throws IllegalArgumentException {
return modes[index];
}
public int getPreferredHeight() {
return 40;
}
protected void layout(int width, int height) {
super.layout(width, 40);
setExtent(width, 40);
}
};