0
我正在創建一個S60應用程序,其中包含5個左右項目的列表框的主對話框。與LISTBOX的對話框應用程序
但我不斷收到一條消息:「應用程序app1關閉」,當試圖在模擬器上運行應用程序。
這是我的資源文件(app1.rss)內容:
RESOURCE DIALOG r_dialog
{
flags=EAknDialogSelectionList;
buttons=R_AVKON_SOFTKEYS_OPTIONS_EXIT;
items=
{
DLG_LINE
{
id=EPowerSMSDlg1Label;
type=EAknCtSingleGraphicListBox;
control= LISTBOX
{
flags = EAknListBoxSelectionList;
array_id=array0;
};
},
DLG_LINE
{
itemflags = EEikDlgItemNonFocusing;
id = EFindControl;
type = EAknCtSelectionListFixedFind;
}
};
}
RESOURCE ARRAY array0
{
items=
{
LBUF { txt="Events Log"; }
};
}
我究竟做錯了什麼?