Is it possible to add a custom menu item, such as "print", that can perform my specific task in the "documents to go" application?
AFAIK you can not add menu item to 3rd party app.
Related
I'm new to iOS. And I'm trying to get popup menu as I did on Android:
This menu should disappear when the user clicks on another area of the screen.
I found the same menu in the YouTube app for iOS, but I didn't find a simple solution for that. I tried using popup window with "Present Modally" segue, but it behaves differently.
You can use cocoapods to quickly add a dropdown menu. Can read more: https://github.com/AssistoLab/DropDown
I want to remove system menus; for example, in the Message app I want to remove the Send option from the menu.
There is a way to add menus using
ApplicationMenuItemRepository.getInstance()
.addMenuItem(ApplicationMenuItemRepository.MENUITEM_SYSTEM, this);
and also to removeMenuItem() in the same way, but I'm not able to remove menu items.
How can I use this, or any alternate way, to remove menu?
I want to remove some of the menu items and also want to disable menu on click of the button on some screens of my application.
use addMenuItem and removeMenuItem(menuitem) to add and remove menuitems in blackberry.
Refer blackberry library links addMenuItem() and MenuItem Class
I have a requirement to create a ipad app that supports tab to view content. I have created a custom splitview controller, whenever user goes to a particular section in the left section, the contents related to that will be displayed in the content view(right view). If a user selects a particular link in that content view it should open a tab and display the contents of that link in that new view. Similar to Web Browser tabs i need to handle tabs in this app. Please suggest any available open source component or any ideas to implement tabbing inside a ipad app.
You can use Three20 for your tab purpose. Also there are many open Source components available. You just need to search in google.
I need to set the menu help text of my shell context menu popup menu item just like winzip shellContext menu. I tried IContextMenu_GetCommandString but it is only setting menu help for sub menus of my main popup menu. Please help me and let me know how to set the menu help for my main poup menu?
Thanks
In case you haven't solved this already, here is what worked for me.
You need to insert your popup menu into the explorer menu using InsertMenuItem, as described here. This allows you to give your popup menu an ID.
The shell passes that ID into IContextMenu_GetCommandString when querying the items, by way of checking for that ID you can return any help string you need.
However, it may simply not be displayed if you right-click on a folder in the (left) folders pane of explorer, and not in the files pane to the right. On my system, if one or more elements are selected in the files pane, the properties (type, size, name and some more stuff) are displayed in the status bar, even if I right-click on any folder in the folders pane.
This seems to be standard behaviour - at least on my system it's the same for all installed custom extensions and even for the default explorer menus.