2013-01-10 62 views
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) { 
    } 
    ... 
} 
... 
} 
+0

您是否在編輯器中爲窗體定義了所有模式?也許tou定義a =僅用於所選模式,否則定義爲unSelecteMode? – neb1

+0

是的,我將它設置爲未選中和選定的選項卡。 – pheromix

回答

1

檢查你的血糖透明度設置爲255,如果你正在創建窗體後這種變化一定要刷新它。

+0

它是否在資源編輯器中設置了bg透明度或在我的代碼中? – pheromix

+0

兩者都有效。 –