I’m trying to find out about the Extras menu on windows phone. Extras.xml. Here is what I’ve found (there isn’t much out there)
- Adding extras.xml to your app will put it into the ‘extras menu’
- Extras menu is available in your media library
- you can send media to your app via extras menu
What else is this used for? Where else can it go? Can you use extras menu in your app or is it an OS only menu? Is it limited to media?
You can use Extras in order to further integrate your app into the OS. For example, a user can view a picture from the Pictures Hub. If your app uses the
Extrasfile, then it’ll appear as an option from within the Pictures Hub. The user can then tap on your app (from the picture’s menu) and your app will launch, with the OS passing the picture to your app as a parameter. Your app reads in the image and performs some sort of function on it. Using theExtrasfile is very easy as demonstrated on this MSDN page.The
Mangoupdate will further enhance this by providing theExtrasmenu from within Bing search results. The demo shown recently showed the user searching for a movie in Bing. Straight from the results, the user can launch theIMDBapp (or any other app that usesExtras) and have the system automatically send in the details of the movie they searched for. Within the IMDB app, they could see trailers, info etc…