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) {
}
...
}
...
}
您是否在編輯器中爲窗體定義了所有模式?也許tou定義a =僅用於所選模式,否則定義爲unSelecteMode? – neb1
是的,我將它設置爲未選中和選定的選項卡。 – pheromix