Discussion Board
Setting size of Indicator area
2001-11-28, 21:25
#1
Registered User
How do I set the indicator area size to narrow?
RE: Setting size of Indicator area
2001-11-28, 21:25
#2
Regular Contributor
One way is to set the area to narrow in the resource file (this is explained in another resolution: 5701 Setting Indicator/status pane to narrow mode).
Another way is to do this in code:
#include <indicato.rsg>
void CMyAppView::SwitchIndicatorLayout(TBool aNarrow)
{
CEikStatusPaneBase* statusPane = CEikStatusPaneBase::Current();
if(aNarrow)
statusPane->SwitchLayoutL(R_INDICATOR_LAYOUT_NARROW);
else
statusPane->SwitchLayoutL(R_INDICATOR_LAYOUT_WIDE);
}
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules