I would like some help about an Android Application. I used the new Google Currents application and saw how the user can navigate inside an article. This is like the iOS' dots but with a bar instead of the dots.
Can you give me some clue about how google did it ? I'm not asking the code but the way to do it because I can't figure out how to begin.
You can try using a ViewPager with a ViewPagerIndicator like the one in Google Currents
More on
ViewPager
ViewPagerIndicator:
You are referring to the 'circles' ViewPagerIndicator like so:
For more information, try downloading the sample ViewPagerIndicator app from the play store
Related
I want to implement animation when change the page in ViewPager, I know that I must use PageTransformer. I want to create an animation as Play Books app from google (like this).
I had searched a lot but no answer was accepted.
Any one can help?
There are many page curl libraries:
android-FlipView
transitionviewpager
android-flip
FoldableLayout
FoldableLayout2
android_page_curl
I wish one of them fulfill your need
How can I implement a Sliding Tabs like in the new Google Play Store 5.0?
click for the image
I have seen so much examples, but all using a "addTab" that is deprecated or not run on android 2.x.
I need a example about this implementation.
My Idea is that in my APP the tabs will be created in according with the information that come of my Web Service. So my APP can have 3 tabs or 40 tabs.
Here is an barebones example in the documentation: http://developer.android.com/training/implementing-navigation/lateral.html#PagerTitleStrip
Also, here is the PagerTitleStrip documentation.
Please provide me example to implement ViewPagerIndicator which have parallaxed effect like Google Play application.
Please see following link to get screen shot:
https://drive.google.com/file/d/0B8kWr56ufFJcRzE1X3RCeXZ6bTQ/edit?usp=sharing
I am not sur what do you mean about 'view indicator like Google play application'
But you have a great library named ViewPagerIndicator here
EDIT : I not expert with this but it's call android Tabs
Here some android information
Hope it's will help you :)
Google give an example which looks like a little bit play store tab:
http://developer.android.com/training/implementing-navigation/lateral.html
Not sure if it is what you need...
I've found open source to do that. It is PagerSlidingTabStrip. here is source code:
https://github.com/astuetz/PagerSlidingTabStrip
In the new Google Docs Android App, the app has an intro slider view in which it shows the different steps of how to use the app - I like it and want to do something similar for my app.
Are there beautiful looking open source libraries to do this? I can think of the following approaches only:
ShowcaseView
I guess I could do it using Tabs, and adjust the look and feel accordingly.
Any other (beautiful) alternatives?
(This question is slightly old, but here goes:)
Another open source Android library that I found that does exactly this (and fairly easily) is AppIntro.
It enables creation of intro sliders that look identical to Google's more recent intro sliders:
vs
Their wiki and their readme nicely describe exactly how to use it.
You can achieve this by using ViewPager.
For each click on "next" button you can change the page in ViewPager.
http://www.edumobile.org/android/android-beginner-tutorials/view-pager-example-in-android-development/
in my android app I would like to create a ux like the new Google+ app for android, in wich moving from one tab to the other (for example viewing a user profile: 'post','info' and 'photos') is possible simply swiping on the screen..
Can anyone please help me providing some example or tutorial?
Thanks everyone in advance!
They're doing horizontal swiping with a ViewPager. Here's a post on the android blog about how to do that.