hi all, i am blur and do not know how to detect which option user select in a EAknCtPopupSettingList.
for example the EAknCtPopupSettingList have 3 option,Code:CAknSettingItem* item = ( *SettingItemArray() )[aIndex]; switch ( item->Identifier() ) { } CAknSettingItemList::EditItemL( aIndex, aCalledFromMenu ); TBool storeValue = ETrue; switch ( item->Identifier() ) { } if ( storeValue ) { item->StoreL(); SaveSettingValuesL(); }
option1
option2
option3,
How to detect which option user pick? The normal behavior what the EAknCtPopupSettingList do is that it straight put option1 in the setting when user pick(lets say user choose option1). I need to know which choice user choose. Thanks
beside what is the different between
andCode:AVKON_ENUMERATED_TEXT { text = STR_Mobile_PAPresenceView_Available; },
Does the value help me to detect which option the user select?Code:AVKON_ENUMERATED_TEXT { value = 0; text = STR_Mobile_PAPresenceView_Available; },

Reply With Quote

