Customize the Navigation pane

I need to customize navigation pane, where, on the bottom bar, where the back navigation button, I want to display a text next to the back navigation button field.

Is this feasible? or of the workarounds that I could look at?

Is not possible with native actionBar, but you could make your own using

Container (with DockLayout), as root object

ImageButton for buttons

and

ImagePaintDefinition to use custom background image or...

EDIT:

I need to change my answer. Is possible to make your own ActionBar and hide the native, but not recommend :-(

In my view, better if make you your own header title with the centered text field and replace the native title bar. You can use the same components I referred above

Tags: BlackBerry Developers

Similar Questions

  • How can I customize the navigation bar in Firefox 29? I wish I had the back refresh/stop button in front of the navigation bar!

    How can I customize the navigation bar in Firefox 29? I wish I had the back refresh/stop button in front of the navigation bar!

    One of the developers has been around the forum recently try to answer some of these questions then I quote the developer

    For the entire quote and useful links for corrections and explanations please see

    Each setting you see in a computer program you use requires work; when a developer wants to build something new or improve something, he or she has to go through each related (hidden) setting and test if it still works like before and do that on each platform Firefox runs on. That's Apple's Mac OSX, various flavours of Linux and various flavours of Windows, including Windows XP. This costs time, lots of it, and that amount grows exponentially with each setting that's added. This comes on top of our work to continuously fix, improve and innovate Firefox.
    
  • Where is the "navigation pane" in WMP 11?

    Original title: WMP 11 Navigation pane?

    What or where is the "navigation pane" in WMP 11, I have right and left clicked on it until I'm blue in the face, but can not find the ERASE button. Can someone tell me please in the right direction. Thank you.

    Hi GYPCY,

    ·         Which clear key you speak?

    ·         What are you trying to delete?

    By design, the Navigation pane is on the left side of Windows media Player 11.

    Please provide us with more information about the issue so that we can provide you with the necessary assistance.

  • The navigation pane has disappeared from the display of photos

    When you work with my photos, there is a navigation pane to the left I used intensively. He disappeared. When I came back, it is empty. How to restore the list complete photo folders?

    When you work with my photos, there is a navigation pane to the left I used intensively. He disappeared. When I came back, it is empty. How to restore the list complete photo folders?

    There is a tiny little blue arrow on the left hand side, which allows to hide or show the navigation pane. It is located at the pivot. Try to find this arrow, and then click to expand the navigation pane.

  • When you run Windows Explorer from a command line under Vista, control or not display the navigation pane

    I'm under Windows Explorer from a command line under Vista and 7. Under XP I could use the /n switch to control or not display the navigation pane. This doesn't seem to work on later operating systems. How is it possible?

    Hello

    How to change Windows Explorer icon to open a folder in Windows XP and Vista Diffierent - this shows the
    command line and that the switch should always work.
    http://www.watchingthenet.com/how-to-change-Windows-Explorer-icon-to-open-a-diffierent-folder-in-Windows-XP-and-Vista.html

    Command line switches to display items or folders when you open Windows Explorer
    http://www.mydigitallife.info/2009/02/07/command-line-switches-to-display-special-objects-or-folders-when-opening-Windows-Explorer/

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • Page 1 Page 2 without the navigation pane? (change cancel button)

    Hello..

    as the topic already explained

    How I click key 1 for example and it will again go page 2 without the navigation pane

    If I want to go back to page 1, simply click the Cancel button

    all of this sample code? Thank you

    Hi, I assume that https://developer.blackberry.com/native/reference/cascades/bb__cascades__qmlcontroldelegate.html is your choice.

    There is also an example provided by the developer of bb10 3rd part: http://www.hrbuckley.net/2014/05/segmented-control-option-change.html

  • On the Navigation pane

    Hello

    in my application consists of four different pages, so the navigation must occur one after another by clicking on the buttons in the navigation pane used pirticular page.i, using this I am able to navigate to the next page, after that how can I move to another page.

    Thank you.

    When the page is pushed into the NavigationPane, the NavigationPane becomes its parent.

    It can be accessed like this:

    SecondPage.qml

    Page
    {
      id: secondPage
    
      ...
    
      secondPage.parent.push(thirdPage) // secondPage.parent is Page's NavigationPane
    }
    

    ThirdPage.qml

    Page
    {
      id: thirdPage
    
      ...
    
      thirdPage.parent.push(fourthPage)
    }
    

    etc.

    Also, you can access items in the hierarchy by their id-s even between QML files. Thus, a reference to the NavigationPane directly by id probably will also work. It will work in some cases, for example if there are the ListViews in the hierarchy. I like the previous approach, because the pages will be autonomous and they can be easily rearranged.

  • Push a page of .qml using C++ defines the Navigation pane.

    If I have a navigation pane, as defined in C++...

    nav =  qml->createRootObject();
    

    How to push a page called page.qml? The only documentation I can find is to build the C++ page, that I don't intend to do. The purpose of the Page doesn't seem to have a constructor that takes a file as input qml Page, so I don't know how to create a Page object to him, pushing with the NavigationPane function-> push(Page*).

    First, you must load the qml file and create the object on the page of the qml. Then push the page in the navigation pane.

    This code can help you!

    NavigationPane *nav_pane = new NavigationPane;
    
    QmlDocument *qml = QmlDocument::create("asset:///MyListView.qml").parent(this);
    Page *new_page = qml->createRootObject();
    nav_pane->push(new_page);
    app->setScene(nav_pane);
    

    -Looks

    Riadh

  • Hide the navigation pane

    Hi, after I push a qml the navigation pane page, is there a way to hide the navigation bar?

    I have my own button to allow the user to go back. Is this possible?

    If you nevr not the bar action to show, in a NavigationPane, you can proceed as follows:

    NavigationPane{
    backButtonsVisible: false
    
    ...
    
    }
    

    And the back button will automatically appear on all pages that push you.

    -Brian

  • Should what message I to listen to know when a page is in jumps from the navigation pane

    Hello

    Is there a signal on the level of the page that will tell me when a page is in jumps from the navigation pane.  I wish I could stop some it is made on the page when he jumped and no longer in background processing mode.

    Where would I best handle this? I know that there is an onPopTransitionEnded on the navigation pane, but I would prefer to deal with in the qml file if possible...

    Thank you

    You can use the property on the page and Cisse inside the onPushTransitionEnded / onPopTransitionEnded
    For example:

    Page{
        property bool isActive: false
        onIsActiveChanged:{
            If (isActive){
                // start processing
            }else{
                // stop processing
            }
        }
        ....
    }
    

    And

    onPushTransitionEnded: page.isActive = trueonPopTransitionEnded: page.isActive = false
    
  • Open windows Explorer to the navigation pane

    It is a small non-critical problem that was bugs me for a long time and I was not able to find any station anywhere, about it.

    I want Windows 7 to Explorer open by putting focus on the navigation pane, so I can quickly mouse scroll until I'm looking for.

    On a drive hard partition, I switch on the properties of the shortcut of/e, D:\My Documents and with libraries and personal records removed by Registry hacks, Windows 7 Explorer opens to D:\My Documents, but focuses on the files pane.

    What - not great.

    I stumbled in a forum that mentions this topic for Win 7.  Their solution is a dll file that can be downloaded on the post below.

    http://www.classicshell.NET/forum/viewtopic.php?f=8&t=2069

  • The Navigation pane (files) is missing in Windows 7 photo gallery

    The Navigation pane (files) is missing in Windows 7 photo gallery, and I can't restore it.  I'm stuck in a folder of images.  I tried the suggestion of support to look under the "ORGANIZE" tab and choose "Layout", but there is no option on my tab ORGANIZE.    Can anyone help?

    Hi Barbra!

    Try flying over with your mouse cursor in the middle of the left side of the window. A blue vertical line should appear which you can drag to the right to see the adjust your Navigation pane again.

    Hope this is useful.

    See you soon
    Julia

  • How to restore the default libraries in the Navigation pane

    Somehow my fault 'libraries folder' on the Navigation pane, who holds the ' four Documents, music, pictures, video files"has been deleted, how to restore," ".

    I tried many things, but not anywhere near the restaurant.
    The people at 24/7supportexperts worked on my computer for 5 1/2 hours and they case failed to fix.
    Is there anyone out there who can help me please?
    Here is the screen image showing the problem...

    Remove libraries,
    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-files/how-do-i-remove-libraries-Favorites-from-Windows/6a52e21a-DACF-47cc-883E-cea9c6af8b2e#footer

    This link also shows how to restore the default values libraries as well so don't reject not what you are looking for, the title

    See you soon.

    Take screenshots,
    Usually, you can press the SHIFT key (maybe the Alt key) or (FN key on your laptop) and press prtscrn.
    Open microsoft Paint, and then click Paste on the top left.
    Painting is located in the Accessories folder in all programs from the Start button.

    http://Windows.Microsoft.com/en-us/Windows7/using-paint

    Then click on the blue button on the file and click Save as, click jpeg file type and name the file.
    Upload to skydrive or photobucket in a public album and post a direct link to the file here.

    Or use the windows snipping tool,
    http://Windows.Microsoft.com/en-us/Windows-Vista/use-Snipping-Tool-to-capture-screen-shots
    Refer to this topic on how to make a public record and present screen shot here.
    http://answers.Microsoft.com/en-us/feedback/forum/suggest/how-to-insert-an-image-into-a-post-at-answers/bdae0306-c3cb-4d31-ace9-7281ea1a8a73

    You can also look at this for the new format in skydrive

    http://sdrv.Ms/RtThbH

  • Always show the Navigation pane?

    Hello

    Is there a way to always have the Navigation pane visible?

    I use it constantly, and it is really boring in Acrobat MS always have to show all the options of the Panel I use regularly.

    D

    Hey Dek.

    You can simply press the F4 button or choose ' View-> show / hide-> window-> Show Navigation Navigation pane "for the same thing. \

    If you want to hide again, you can right-click on the space on the left and choose the option to hide the Navigation pane buttons (as illustrated below):

    Kind regards

    Ana Maria

  • customize the navigation toolbar

    Hello

    is there a way to customize the navigation toolbar? I want to work only with icons on the interface, but the developer requires me to put a label to go forward.

    You must specify a label.

    Neil

Maybe you are looking for

  • NB520 - Wifi stopped working suddenly on its own

    Hello I bought my NB520 to Singapore. WIFI worked fine for almost 3 years, until very recently, I have a strange problem.It stopped working suddenly on its own during almost 2 weeks in June. Just when I was about to send it to the repair center, he r

  • Portege R500 - is not reading DVDS and software of DVD writer?

    We have a few notebooks Portege R500 and put our brand on them image very well.I can't find the DVD playback software and the software editor of DVD on the download site, is it available? It comes pre-installed on the computer, but we do not want to

  • Where is my mem.

    I have 4 GB of mem but windows only said that I have 2.87. Why?

  • Only programs to run

    I would like to disable all programs on a machine with the exception of a few windows XP.I want to welcome it into the library and don't allow users to use the library catalogue. How could do us this under Windows?or do we need any third-party tool t

  • Media Player stopped working

    Media Player was working fine until I downloaded and installed the recent update of platform for Windows 7.   Media Player will start but then stop immediately.  There is no error code, just "we'll let you know if we always find a solution to this pr