Discussion Board

Results 1 to 2 of 2
  1. #1
    Registered User fonedev12's Avatar
    Join Date
    Mar 2003
    Posts
    10
    How do I set the indicator area size to narrow?

  2. #2
    Regular Contributor huckFIN's Avatar
    Join Date
    Mar 2003
    Posts
    76
    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
  •  
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved