我BitmapFields
在 one 上添加了 2(左右箭头)HorizontalFieldManager
,但是当我单击 HFM 上的任意位置时,BitmapFields 获得焦点并显示它已被选中。
我不想在任何地方显示焦点,直到它没有点击BitmapFields
。
以下是它的代码:
bmfBottomRight = new BitmapField(bmpBottomRightFocused, FOCUSABLE) {
protected boolean navigationClick(int status, int time) {
int fieldIndex = getCurrentFieldIndex();
if (fieldIndex < (surveyList.size() - 1))
updateIncrField(fieldIndex);
return super.navigationClick(status, time);
}
};
bmfBottomLeft.setPadding(5, 0, 5, ((Display.getWidth() - bmfBottomRight.getPreferredWidth()) >> 1) - bmfBottomRight.getPreferredWidth());
我正在为它设置填充..