I want to create a fade in effect in my app on the home page.
Hence, I want to place the logo I use on the splashscreen exactly on the same place on my app's home screen.
Is there a way I can get the exact position of the splashscreen logo so I can have the same logo on my home screen and it would create a fadeIn effect.
Example image below
Related
In my activity, when a user action succeeds i want to show a circle that animate out from center to outside as a splash color and then disappears showing the content as before. How can i achieve this splash animation
You can have a look at this library https://github.com/hendraanggrian/reveallayout
So what I wanna do is make app that will display information and allow you to launch other apps from that main screen but I want that screen to appear when I swipe from corner (right bottom ..) from any app and any screen like swipe pad app or swipe drawer type of apps.. Any ideas? :)
You can do it by service.
this will make your button show on top of everything so you can hide it and show a small line or something or even a transparent icon and when user touches it it will do what ever you want.
when we click on icon/image of any contact, By default, this view shows full screen.
how will implement following case
1.View a separate activity with transparent half when swipe towards the top it is overlay up-to action bar.
2.swipe down the screen will gone look like lollipop 5.1.1 call details view
Case 1 : For transparent Activity try this link. You just need to add Theme.Transparent and color code #0000000 in your styles.xml
Case 2 : Bottom to Top Activity transition use this link for more detail. You can do Top to Bottom transition on back pressed button.
I have an app with home page showing a Google map with current location.
So according to the sketch in my home page i have a image icon or button type in my first screen and when i click on that icon or button a tile type opens up where there will multiple activities you can go.
Example if you click on 1 then it goes to one activity to do some task and if you click on 2 then it goes to another activity and similarly for 3 ,4 ,5 ,6 and whenever i click on any of the tiles it should go to particular activity.
I tried searching lot how to achieve this task over Google and thought some experts would me help me out with this in here.
And another point is home screen should not change if you click on icon or button in first image. As i mention in image both screen will be home page with map showing current location.
You can make it yourself. Set a RelativeLayout (in which there are six buttons) in the lower-right corner, and set it's visibility to View.GONE, then set another view in the lower-right corner as the button to open the expanded menu. When click on it, set the button to View.GONE and the RelativeLayout View.VISIBLE.
Hope it helps.
I want a transition between my splashscreen and my "home" activity.
The splashscreen consists in two images (the same image with mirror effect). The upper image translate to the top, the lower one translate to the bottom. The home is appearing behind.
It's like a curtain which is opening.
I don't find a solution to have two separate activities for this animation.
If I make only one activity, the problem is that the "home" has an actionbar whereas the splashscreen doesn't have one.
Do you see a solution?