2013-04-10 90 views
0

我試圖讓我的HelloWorld和action事件觸發。即時通訊使用的圖形用戶界面,當它自動創建:CodeName One,Action event not working-需要說明

protected void onMain_Button1Action(Component c, ActionEvent event) { 
    // If the resource file changes the names of components this call will break notifying you that you should fix the code 
    super.onMain_Button1Action(c,event);  
} 

我知道它不是去上班,因爲沒有超類中同類型的空白。

protected void onMain_Button1Action(Component c, ActionEvent event) { 
    // If the resource file changes the names of components this call will break notifying you that you should fix the code 
    Dialog.show("Test", "it works", "OK",null); 
} 

而我仍然沒有得到任何東西。我尋找其他教程如何使用代號作爲一個,但我無法找到任何。我沒有得到作者的作品。如果有人能折騰我,我會非常感激。

回答

1

您需要將資源文件保存在設計器中,而不要將調用刪除到超級。如果您使用的是Eclipse,則應在使用F5保存到設計器後刷新項目。