0

我在 src 文件夹内的资源编辑器文件中使用主题来设置表单的背景颜色,但在运行时表单的背景颜色仍然是空白的!这是代码:

public class Saisie extends Form implements ActionListener {
...
public Resources r;
public Hashtable tTheme;
...
public Saisie(MIDlet midlet)
{
    super("Saisie situation");
try {
        r = Resources.open("/resources.res");
        tTheme = r.getTheme("Theme");
        UIManager.getInstance().setThemeProps(tTheme);
    } catch (IOException ex) {
    }
    ...
}
...
}
4

1 回答 1

1

检查您是否将背景透明度设置为 255。如果您在创建表单后进行此更改,请确保刷新它。

于 2013-01-10T13:39:19.830 回答