How To Create Native Tab Bar floating above - phonegap-build

I am a beginner. I want to create android app using intel XDK. how to implement facebook or twitter button on the menu in order to open up their web while tab bar to return to the main menu it floating above like this: fixed tab bar sample
Anyone please help me..

You can use list view or grid view template available in Intel XDK, and add iframe in the panels, the header will stay in place

Related

Xamarin Forms: Single button that opens a dropdown menu

Hi does anybody knows if I can make a button in Xamarin Forms that opens a small dropdown menu? I did this in android studio but I can't find a way how this could work in Xamarin.
It should look like this:
And like this if the button is clicked:
And the Button should not be in the navigation bar because this page don't have one.
So if anybody could help me I would be very grateful and sorry for my bad english.
The closest API in Xamarin that does that is to display a pop-up using DisplayActionSheet, but the dropdown menu will be at the bottom of the screen. Or you can use a Picker (link to documentation).
If you want to implement something that look exactly like the image in your post, you can create a StackLayout that contains a few buttons, and show it when the drop down menu button is clicked.
i think that you can do it not directly but if we let some things be together we can achieve it, you have to add toolbar item for the button and for the menu list it's a popup page that has transparent background and list menu on the top right !

Xamarin.Forms how to change the navigation back button to an image?

I am building an app in Visual studio with crossed platform in Xamarin.Forms.
I have been trying to change the back arrow button in the navigation UI to an image in stead of the arrow, but I haven't found any good examples.
Is there anyone here who can help me?
Back arrow button in navigation bar is default feature. I think it can't be changed. If you want to change it then you should use a custom navigation bar.

Different Tab Bars when switching to different application function Swift Xcode 7

I have a tabbed application in Xcode 7, written in Swift 2.
It is a job search application. When you initially open the open you are brought to the job browse/search function. In one of the tabs you are able to select "Switch to Recruiter."
I would like to have this recruiter function in the app with a separate tab bar menu.
I've tried adding an additional tab bar controller in the storyboard as well as creating a new storyboard with a new tab bar controller and linking to it from the initial storyboard. In both instances, the original tab bar and the new tab bar are shown stacked at the bottom of the screen.
I obviously would like only the recruiter version of the tab bar to be shown when they are in that section of the app.
Does anyone have any suggestions for the best way to accomplish what I am trying to do?
Thanks!
It's as simple as creating 2 separate tabbars.
Made an example project.

mac toolbar style

Does anybody know how to make a toolbar which style is like top bar of "Xcode Organizer"?
Press different item ,different view will show down below.
It has toolbar style but tab bar function,Many mac apps' preference pane use it,I'm confused.
Can anybody help me please.
Thank you very much.
Plus this is a Mac Application
Start with the documentation for NSToolbar. There are even some sample applications to get started with.
Good overview for making a better preferences window - see the link to a demo project on the second page of this article.

Drop down menu like the default iPad application menus

I'm currently working on my first iOS application to run on the iPad, and I've come across a problem. I have been asked to implement menu's similar to the ones in the default applications such as when you click on the "Calendars" button in the top left of the calendars app.
Only issue is, I cant seem to find a standard UI object that looks like these, with the arrow connecting the menu to the button etc. Is this a standard UI component that I should be able to use, or will I have to imitate them by creating a custom object?
Thanks for any help.
That is a UIPopoverController. There isn't an Interface Builder control for this. You need to create one programmatically:
UIPopoverController *popover = [[UIPopoverController alloc]initWithContentViewController:someTableViewController];
See the documentation for more information and sample projects, specifically ToolbarSearch:

Resources