Google Display of top black bar - google-account

I've attached two images. I really like the first one but now I'm in a different area and it's appearing as in the second image. I've tried very hard to get back the original black bar but no success!!(Note the difference in both of images concerning the top black bar, like the font in the first case is not bold like the second one and the positioning of details on the right hand side).
My Question is how do I get back to the 1st display again. All the Google pages are now displayed according to the 2nd image.
First image:
Second Image:

Related

Xcode Animated Tab Bar Controller - setting the appearance of icons

I have Animated Tab Bar Controller:
I would like to change it so that it looks like this:
the change would concern:
- space between the icon and the inscription (vertical),
- the middle button should be in this circle, raised up.
Does anyone know how I could do it?
I can share my Storyboard file.
I'm using this component:
https://github.com/Ramotion/animated-tab-bar
The project is in Swift 4.
Your questions
1) space between the icon and the inscription (vertical)
->> Reduce size of images
2) the middle button should be in this circle, raised up.
->>> get bigger image of circle and apply image inset
Note: Make sure whatever you value you apply on other side it should be same value as negative like in image I have applied 2 on top and other side -2 on bottom, If you don't do this you will get unexpected output on clicking
BOUNS
If you want your image as it is then apply Render as original
Hope it is helpful

Issue with displaying an alert like view

In Android, on the click of a button I get a screen coming up (the one on the left with just the First Name and Last Name) and on click of the more button the other fields are also displayed (the image on the right).
I tried to achieve this by loading another view on the click of the button, but this shows a view completely filling the screen and not like the one in the image with limited height and the background view being greyed out.
Also to get a screen like the one on the left I made their height constraints equal to 0, but though it showed just 2 textfields, the screen filled the whole screen and not like the one on the left.
Any idea as to how this can be achieved?
To show custom transition while presenting a controller i.e.
your first requirement - a view completely filling the screen & not like the one in the image with limited height and the background view being greyed out.
you can use UIViewControllerAnimatedTransitioning.
I have created a sample here:
https://github.com/pgpt10/Custom-Animator

Black boxes, missing or scaled images

In my iOS 8 app (Swift) I have setup a storyboard like so:
However, when I run the app I get something like the following result:
Notice how the images in top top-left and -right corners are not showing as expected. Also, sometimes the image in the top-right is not correctly scaled and has a greater height than expected. Notice how there's also a black box on the first result of the table view (this does not happen for any other results).
Both images are actually UIButtons with the image set, and have a size of 30x30 with 'view mode' set to "scale to fit".
EDIT:
Here is what it looks like with no results and the incorrectly scaled top-right image:
I resolved this issue by setting the "image" and "background" of each button to the same value (I did this in the storyboard editor, not through code). I feel like this is pretty hacky and doesn't answer cause of the issue. However, the images are displaying correctly and that was the aim of the game.

Making a pull out tray - (iOS)

I'm making an iPad app, and basically, I want to make a tray that pulls out from the bottom of my app, and I'd like to have a little tab at the bottom of the screen that if you pull, it brings up an image, and the image's height would match the height you pulled the button to. It's a bit like how the notification center works, except the tab is always visible.
So my question is how would I have the image follow the tab as it moves vertically across the screen? I would assume using a UIButton for the tab and a UIImage for the tray would make sense, and I have some code for making buttons move, but how can you make one object follow another?
Thanks for your help,
-Karl
I wouldn't use a button for the tab -- just a regular old view.
To make your image follow the tab (however you implement either of them), simply animate them both together. That is, if you create an animation that moves the center of the button to the Y-coordinate of the user's touch, you can at the same time move the image vertically by the same amount. The two objects will then seem glued together because they move together.

Increase width of tab bar item to fit image

I am doing a simple tab based app, with one 2 tab items and I would like to have an image in
each tab.
The problem is, tabbarcontroller is cropping the images rather than fitting them in. I just have two images, basically text, saying "ABOUT","SETTINGS" and i would like them to take the full width of the tab bar. Something like the attached image. How can i achieve this without the images getting cropped.
Referring to the image "ABOUT" & "SCAN QR" are images.
Thanks
I don't think what you wish to accomplish is achievable by using the standard controls.
I'd recommend using a custom toolbar instead of the tab bar controller.

Resources