最基本的一招就是在AppUi中的ConstructL()中加一句话搞定。如下:
- void CTestMIMAppUi::ConstructL() {<BR> BaseConstructL(CAknAppUi::EAknEnableSkin);<BR>//add your code here...<BR>}<BR>
用上面这句话基本上能让大部分控件的透明化,显示出系统的皮肤。
但是,有时我们会发现部分控件(比如那个CEikEdwin)仍显示的一个难看的白底,此时,我们需要做一些额外的工作了。
修改Container的头文件,增加一个成员变量:
- CAknsBasicBackgroundControlContext* iBgContext;
然后在对应的ConstructL函数中初始它:
- iBgContext = CAknsBasicBackgroundControlContext::NewL(KAknsIIDQsnBgAreaMainIdle,aRect,ETrue);
这儿的KAknsIIDQsBgAreaMainIdle你可以选择其它的,不碍事的。
然后,因为CEidEdwin有一个很方便的成员方法SetSkinBackgroundControlContextL,所以接下来的代码就简单了:
- iEdWin=new(ELeave)CEikEdwin;<BR> CleanupStack::PushL(iEdWin);<BR> iEdWin->SetContainerWindowL(*this); <BR> iEdWin->ConstructL();<BR> iEdWin->SetSkinBackgroundControlContextL(iBgContext);<BR> iEdWin->SetExtentToWholeScreen();<BR> iEdWin->SetFocus(ETrue);<BR> iEdWin->ActivateL();<BR> CleanupStack::Pop(iEdWin);
这样就可以了。别忘了,在析构时delete它。
2.终极方法显示系统皮肤
再进一步,如果控件没有这么方便的成员让我们去设置它的背景,也有办法(参考http://www.newlc.com/Enable-Skin-support-in-your.html)。
很好办,先在H文件中增加一个MopSupplyObject的声明:
- TTypeUid::Ptr MopSupplyObject(TTypeUid aId);
然后实现中,ContructL中就不用iEdWin->SetSkinBackgroundControlContextL了,而是在三个函数中分别处理:
- void CTestMIMEdtContainer::Draw(const TRect& aRect) const {<BR> CWindowGc& gc = SystemGc();<BR><BR> MAknsSkinInstance* skin = AknsUtils::SkinInstance();<BR> MAknsControlContext* cc = AknsDrawUtils::ControlContext( this );<BR> AknsDrawUtils::Background( skin, cc, this, gc, aRect );<BR>}<BR><BR>void CTestMIMEdtContainer::SizeChanged() {<BR> if(iBgContext)<BR> {<BR> iBgContext->SetRect(Rect());<BR> if ( &Window() )<BR> {<BR> iBgContext->SetParentPos( PositionRelativeToScreen() );<BR> }<BR> } <BR> DrawNow();<BR>}<BR>TTypeUid::Ptr CTestMIMEdtContainer::MopSupplyObject(TTypeUid aId)<BR>{<BR> if (iBgContext )<BR> {<BR> return MAknsControlContext::SupplyMopObject( aId, iBgContext );<BR> }<BR> return CCoeControl::MopSupplyObject(aId);<BR>}
void CTestMIMEdtContainer::Draw(const TRect& aRect) const {
CWindowGc& gc = SystemGc();
MAknsSkinInstance* skin = AknsUtils::SkinInstance();
MAknsControlContext* cc = AknsDrawUtils::ControlContext( this );
AknsDrawUtils::Background( skin, cc, this, gc, aRect );
}
void CTestMIMEdtContainer::SizeChanged() {
if(iBgContext)
{
iBgContext->SetRect(Rect());
if ( &Window() )
{
iBgContext->SetParentPos( PositionRelativeToScreen() );
}
}
DrawNow();
}
TTypeUid::Ptr CTestMIMEdtContainer::MopSupplyObject(TTypeUid aId)
{
if (iBgContext )
{
return MAknsControlContext::SupplyMopObject( aId, iBgContext );
}
return CCoeControl::MopSupplyObject(aId);
}
这样也可以让控件透明显示出系统皮肤。
3.显示自定义皮肤
来说自定义皮肤的显示,关键在于那个iBgContext成员如何弄出来,前面的NewL()的第一个参数是系统定义的东西,现在我们需要自定义了。
同样,先修改一个H文件,增加一个成员:
- TAknsItemID aSkinItem;
然后实现文件中的ContructL函数中,我们要从MIF文件中取图片弄成背景:
- TFileName iMFileName;<BR> iMFileName.Copy(KMifFileName);<BR> CompleteWithAppPath(iMFileName);<BR> <BR> aSkinItem.iMinor = 0xE2139689;<BR> aSkinItem.iMajor = 1 ;<BR><BR> CAknsItemDef* mainBgItemDef = AknsUtils::CreateBitmapItemDefL(aSkinItem, iMFileName, EMbmTestmimGrid);<BR> AknsUtils::SkinInstance()->SetLocalItemDefL( mainBgItemDef ); <BR> iBgContext = CAknsBasicBackgroundControlContext::NewL(aSkinItem,aRect,ETrue );
这儿的KMifFileName是定义的资源MIF文件(与其它例子中加载资源图像的方法类似)。
【编辑推荐】