can i change the default (cached) color for a skin/theme ?
hello,
i can obtain the default skin/theme color via
TRgb color(0,0,0);
AknsUtils::GetCachedColor(skin, color, KAknsIIDQsnTextColors, EAknsCIQsnTextColorsCG6 );
is there any way to alter the cached color?
some areas like the mainpane can be altered through:
MAknsSkinInstance* skin = AknsUtils::SkinInstance();
CAknsItemDef *itemdef = AknsUtils::CreateBitmapItemDefL( KAknsIIDQsnBgAreaMain, KMyPathToMyMBMFile, MYBitmapID);
skin->SetLocalItemDefL( itemdef);
is there something comparable for fontcolors?
thanks in advance!
ht
Re: can i change the default (cached) color for a skin/theme ?
you can't change only color of the skin /theme you have to change total skin altogether.
Re: can i change the default (cached) color for a skin/theme ?
thanks for your reply!
do have you some points how i can accomplish that?
have i to design a total new skin, install that separately
and choose it than via the "extended skins api" for the mr-sdk?
or exits there a simpler method?
thanks again.