0

就像我想定制它一样。我得到了一张图片,我想将它设置在我的登录按钮上。

我试过 Login.setBackground("loginbackground.png"); 但这不符合我的要求。这个问题有重复,但我没有找到完美的解决方案,这就是为什么发布它:S

谢谢。

4

1 回答 1

1

如果您想在后台将图像添加到按钮,请尝试使用以下代码:

Bitmap bitmap = Bitmap.getBitmapResource("rectangle.png");
Background background = BackgroundFactory.createBitmapBackground(bitmap);
button1 = new ButtonField("Button1", ButtonField.USE_ALL_WIDTH);
button1.setBackground(background);
add(button1);

或者您可以通过以下方式添加图像并为其添加点击功能来做到这一点:

Bitmap msg = Bitmap.getBitmapResource("msg.png");
BitmapField message = new BitmapField(msg, Field.FOCUSABLE)
{
    protected boolean navigationClick(int status,int time)
    {
        label.setText("Messages");
        Dialog.alert("Message icon selected");
        return true;
    }
};
add(message)
于 2012-10-11T05:50:07.893 回答