gpt4 book ai didi

blackberry - 如何将焦点设置在位图字段上,蓝色不可见,黑莓

转载 作者:行者123 更新时间:2023-12-03 16:40:45 24 4
gpt4 key购买 nike

我正在使用包含小图像的位图字段。

当焦点出现在该图像上时,焦点的蓝色不会出现,我该如何设置焦点宽度和高度

我的代码::

contract_image_field = new BitmapField(contract_image,Field.FOCUSABLE)
{
public void getFocusRect(XYRect rect)
{
rect.width=0;
rect.height=0;
//super.getFocusRect(rect);
}
protected void onFocus(int direction)
{
myScreen.this.invalidate();
super.onFocus(direction);
}
protected void onUnfocus()
{
myScreen.this.invalidate();
super.onUnfocus();
}
};
contract_image_field.setBitmap(contract_image);

这是我处理图像字段的方式,

虽然我的图片是可点击的,但我看不到蓝色(我想要那个,请帮忙!!!)

在 getFocusRect 中更改宽度和高度的值甚至不能解决问题

最佳答案

您还可以避免增加字段范围;使用以下代码:

BitmapField bitmapField = new BitmapField(bitmap, BitmapField.FOCUSABLE)
{
protected void drawFocus(Graphics graphics, boolean on)
{
setSpace(5, 5);
super.drawFocus(graphics, on);
}
};

关于blackberry - 如何将焦点设置在位图字段上,蓝色不可见,黑莓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2317059/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com