UWP App example with commandbar, splitview and title - win-universal-app

I am looking for a example code which use top commandbar, splitview with hamburgericon and title of page with backbutton near humbergericon. Something like a MSN Weaher app:
I am looking exactly the same top bar with title and backbutton and left splitview. Do you know about something like this?

You can use Template10 to get an implementation of the SplitView with Burger Icon.
Special consideration about the BackButton : in this sample, this is just a simple button, when clicked you have to call the following code:
if (this.Frame.CanGoBack) this.Frame.GoBack();
If you plan to implement this feature, be carefull when your application will be executed in tablet mode or running on a mobile phone. In these situations, you have to manage also hardware/soft back button. Please check Back button navigation documentation.

Related

Cosmicmind: how to dismiss floatingViewController / return rootViewController?

toolbarController?.floatingViewController = vc
to floating view controller. As expected, toolbar not showing and screen shows with full size. I want to dismiss back to rootViewController didnt achieve that.
Actually i showed apps in pagetabbar like google play and now i want to show app detail page. When user clicks app icon, app icon will animate and shows detail page and if he wants to, it will dismiss that. I used transition method first (it has animation parameter) but i want to figure out difference between floating usages etc. Is there any showcase ? Thank you for great library btw.
to hide the floatingViewController, set it to nil. There isn't a showcase at the moment. The transition method is for changing the rootViewController. Hope this helps :)

Map application similar to Windows 10 maps using Template10

I want to design my map application using template 10 but the problem is i am using webview and want search and directons results on same page when splitview search button or directions button is clicked similar to Windows 10 maps app i dont want a master details page structure how to acheive this using template10
Edit 1:
Sorry for not being clear.I don't want search or direction on other page but on the same map page as a flyout same as in windows 10 maps.
How split view handles navigation and how back button is handled.Is it a page or a user control.
What you are wanting has already been demonstrated in the Search (and Login) project in the Samples folder on GitHub. http://aka.ms/template10. What you are asking is not uncommon, neither is it complex. I think reviewing the sample you will see how you need to construct your XAML.

expandable (month view)/collapsable(week view) calendar widget for android

I saw this android calendar widget used in an app called cal and was quite impressed.
I would like to implement a similar one in my app as well. Currently I am using an android calendar framework called caldroid and I am using it as a Fragment and will be invoked on action bar button click and will get collapsed clicking back on the action bar button.
But I would like to do the widget like in the app. Screen shots attached.
I would like to know if you guys are aware of any frameworks that can used to achieve this or any approach or tips on how to code this.
I am bit new and know basics of android. Haven't attempted to create custom widgets yet.
Thanks,
Bala
Maybe this library can help you.
https://github.com/blazsolar/android-collapse-calendar-view

Show Title in MonoTouch tabbed application

Maybe I'm missing something super simple, but I can't seem to get a title to show up at the top of Views contained within a basic tabbed application. I follow these steps...
New Solution, Universal Storyboard, Tabbed Application
Run that and you have two basic Views "First View" and "Second View".
Neither View by default has a title bar, but the default code shows setting a this.Title.
Why don't the title bars show up? How do I get them to show? I've tried several things to get these to show such as...
Setting "Top Bar" in Interface Builder to "Navigation Bar". It then shows in Interface Builder but never shows on runtime.
I've also tried in ViewDidLoad() to set this.TabBarController.Title but that doesn't seem to do anything either.
Thoughts?
The feature you are looking for is called a NavigationBar and can be added manually via IB to your view if it does not have a NavigationController associated with it. If there is a navigation controller then the NavigationBar will show up automatically.
So to answer your question if you want a NavigationBar go to IB and add one from the objects library you should then be able to manipulate the Title on the nav bar to your hearts content.

Android googledocs app component name

I am planning to provide menus for my app similar to the sliding menu shown in the below image when clicking on the button in the list view. Could you give me some pointers on, how it can be achieved. Is it SubMenu ?
http://static5.businessinsider.com/image/4db84baeccd1d58435080000/google-docs-for-android.jpg
I got it, the behavior or pattern name is QuikActions.
Useful introductory article for the beginners like me is available in the following link
http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/

Resources