Custom navigation bar in android - android-custom-view

I want to make a navigation in android, just like the one in google play store, in which when you browse horizontally, you browse through tags like "top new free", "top new paid" "home" and etc..
can anyone help! A.S.A.P

There is no need to create a custom view, check out this example!

Related

Ionic 4 popover and/or actionsheet on PWA?

I'm building an Ionic 4 PWA and I am looking for a "simple" solution to the following:
For each item in a list e.g. a newsfeed or comments list: I want a "more" icon (the dotdotdot icon) to show a list of options the logged in user has available e.g. if they own the comment or newsfeed item they will have extra options like "edit" and "delete" etc.
Now I can use an ActionSheet to show these options and dynamically add the correct options into the sheet - all well and good. But this only looks good on a mobile device. If the user is on a desktop then an action sheet looks out of place. So, a Popover would look better but only on the desktop view.
Is it possible to dynamically create a popover in code without having to create a component for it as the items in the popover list will vary depending on what type of object it is e.g. newsfeed, comment etc and their access rights to that object e.g. edit/delete etc.
Not sure if I have explained this very well but looking for a slick, simple UI Ionic 4 way of displaying "options" to the user when then click/tap on the more icon depending on device.
I did go down the route of having ActionSheet for mobile users and Material Design Mat-Menu for the desktop but it just seems over complicated.
Any advice would help.
Thanks,
Rowie
How about a popover with a custom css class that is using a screen media query?

3D Touch Shortcut Widget

i'm trying to implement new "quick menu widget" in iOS 10 available with 3dtouch.
My app has multiple today extension and apple guidelines report
If your app has multiple widgets, pick one to appear in the quick action menu that appears when someone applies pressure to your app icon on the Home screen using 3D Touch.
I don't understand where i can "change" that!
With only one widget all works as well.
There is a new Info.plist key UIApplicationShortcutWidget which you need to set to the bundle identifier of your widget.
See the documentation at: https://developer.apple.com/library/prerelease/content/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW32

Windows Phone Pivot Subpage Navigation

If you open up the WP7 settings app there is a pivot control, and when you select an item in the list (say, the WiFi settings item) it has a nice, pretty navigation to a subpage where you tell it exactly what settings you want.
I want to do the same thing in my app - have a list of items, and when an item is selected, I want to navigate to a new subpage in the same beautiful manner. This seems like a simple task, but I don't think I'm searching for the right terms in Google. How is that effect achieved?
Please see these tutorials on making wp7 navigation transitions:
http://windowsphonegeek.com/articles/Windows-Phone-7-Navigation-Transitions-Step-By-Step-guide
or this one:
http://rhizohm.net/irhetoric/post/2010/11/09/Page-Transition-Animations-and-Windows-Phone-7.aspx

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:

In WP7, how to Add Tile form My ListBox Item?

I try to add Tile form ListBox Item of my app:
Like Friend hub, Game hub...
Let User tap one item, show "pin to start",
then more Tiles on start page with different picture or word.
Is it possible ?
If you mean adding to the phone home screen, there can only be one tile for your app. This is added via the application list to the right of the home screen via tap and hold on your app icon.
Do you mean that you want to add more than one tile for your application to the home page in the same way that you can with map locations from the Map app and with notes from the OneNote application? If so, then you can't do this with the current development framework, though I personally hope that it will be available in the future.

Resources