Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I want to implement horizontal progress bar with steps like shown in following img.
I could not find such native component in Android. Can anyone guide me on how to do it ?
I found a Vertical Steper that follows Google Material Design guidelines:
And also another well documented library Here
I hope it helps.
EDIT: A repo which seems to currently be well supported and used (Sep 2016) https://github.com/baoyachi/StepView
Old Answer:
This answer is late to the party, but so far the best I've found is this repo from Anton46: https://github.com/anton46/Android-StepsView
It's quite simple to setup too.
Heres an example:
I've created a Step View ViewPager that supports both Horizontal and Vertical paging and doesn't require drawables and images. You can configure the appearance by simply specifying various attributes.
It can be found here https://github.com/YablokovDmitry/StepViewPager
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am new to Android Application Development. As an Android Developer it is better to have a source, PDF file etc that contains the whole list of UI components of Android application with their names and screenshot.
For example:
Titlebar:
Navigation Side Menu:
Etc.
Before negative marking my question please note that i did lot of search for this purpose and right now i am at the Material Design, tutlane, and android developer official website. But the content there is spread and not collected to keep it as a pocket document. Can anyone have a source of such information to share here. Thanks !!!
See this site about material design. I think big part of views are described and showed there.material.io
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
These days, I am interested in Material Design Animated Icons.
So I tried to make the icons in the url below.
https://material.io/design/iconography/animated-icons.html#usage
But I can't find examples :(
So, Could you tell me where I can see the example?
plz..
I can recomend you this page for create your own animated SVG files. Just see how it work a SVG(check this blog) because you'll work with the components of your vectors. Don't worry it's really easy to create basic animations. Check the samples within the page.
I hope this helps! Regards bro
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I want to implement a Tag Cloud with Android Chips.
But i think the best way to do this is with a RecycleView and a custom LayoutManager.
I search for a LayoutManager which layout its children like a FlowLayout but found nothing.
Has someone found this kind of behavior or a good and simple tutorial about custom layout managers? I found no simple or simple but incomplete articles.
.
I found a library that does this.
You have add this line to your Gradle depencencies:
compile 'com.xiaofeng.android:flowlayoutmanager:1.2.3.2'
and set your recycler view layout manager with it:
recyclerView.setLayoutManager(new FlowLayoutManager());
You have additional details on how to configure it on Github: https://github.com/xiaofeng-han/AndroidLibs/tree/master/flowlayoutmanager
You may try my library. See github description page for detailed features/usage.
It provides behavior which exactly you want.
Its min sdk is 15, which covers almost all nowadays devices being used.
Also it is still maintained, so you can receive additional support from me
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking for XML Design templates for Android for last 2 days.
Please help me to get the stylish and fancy XML templates that i can reuse after customizing them.
Any response is appreciable.
Thank you.
Have you tried looking at open source projects on Google Code or Github? I know this has helped me with UI re-use for creating action bars, etc (along with other patterns now found at http://developer.android.com/design). I know 'iosched' over at Google Code has helped me learn about layouts. As far as pre-defined templates, I do not know of a specific repository for this. Hope this helps.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Is there something in the standard Android SDK that allows you to do image sliding like this app?
No there isn't. You'll have to implement that by hand however if you find a 3rd party library that does just that, even tho I doubt there is, then please feel free to add it to my list.
https://stackoverflow.com/q/4078479/418183
Try overloading GalleryView or ViewFlipper classes.
I needed switchable banner and I overloaded the ViewFlipper, then I am detecting gestures on that view and im switching the images.
It works really fine.
Try this library:
https://github.com/daimajia/AndroidImageSlider
You can easily load images from an internet URL, drawable, or file.