Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zieiony/guidetocustomviews
The ultimate guide to Android custom views
https://github.com/zieiony/guidetocustomviews
android android-ui material-design
Last synced: 4 days ago
JSON representation
The ultimate guide to Android custom views
- Host: GitHub
- URL: https://github.com/zieiony/guidetocustomviews
- Owner: ZieIony
- Created: 2019-10-21T09:03:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-15T04:59:40.000Z (about 3 years ago)
- Last Synced: 2024-10-12T14:13:55.272Z (about 1 month ago)
- Topics: android, android-ui, material-design
- Language: Kotlin
- Size: 395 KB
- Stars: 754
- Watchers: 31
- Forks: 55
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GuideToCustomViews
The ultimate guide to Android custom viewsI've been designing, writing and publishing Android custom views for the past 5 years now. I guess it's about time to sum it up and share the results.
Here you will find the topics related to custom views and a couple of case studies. Code samples will be in Java and Kotlin randomly and the code will be as simple as possible to demonstrate ideas and techniques better. I want this place to be more of a tutorial wiki than a documentation. You can find the documentation on [developer.android.com/](https://developer.android.com/).
I'll try to add an article or two per week. If there's something missing and you think that I should write about - raise an issue and tell me. If you wish, there's a larger repository with my custom views [here](https://github.com/ZieIony/Carbon).
### Topics
1. [Basics](https://github.com/ZieIony/GuideToCustomViews/wiki/Basics)
1. [What to extend](https://github.com/ZieIony/GuideToCustomViews/wiki/What-to-extend)
1. [Prefix everything](https://github.com/ZieIony/GuideToCustomViews/wiki/Prefix-everything)##### Code
1. [Constructors](https://github.com/ZieIony/GuideToCustomViews/wiki/Constructors)
1. [Measuring](https://github.com/ZieIony/GuideToCustomViews/wiki/Measuring)
1. [Custom states](https://github.com/ZieIony/GuideToCustomViews/wiki/Custom-states)
1. [State saving](https://github.com/ZieIony/GuideToCustomViews/wiki/State-saving)
1. [Edit mode](https://github.com/ZieIony/GuideToCustomViews/wiki/Edit-mode)
1. [Drawables](https://github.com/ZieIony/GuideToCustomViews/wiki/Drawables)##### Attributes and styles
1. [Using attributes](https://github.com/ZieIony/GuideToCustomViews/wiki/Using-attributes)
1. [Custom attributes](https://github.com/ZieIony/GuideToCustomViews/wiki/Custom-attributes)
1. [Custom layout attributes](https://github.com/ZieIony/GuideToCustomViews/wiki/Custom-layout-attributes)##### Accessibility
1. [Basic accessibility](https://github.com/ZieIony/GuideToCustomViews/wiki/Basic-accessibility)
1. [Content description and events](https://github.com/ZieIony/GuideToCustomViews/wiki/Content-description-and-events)### Case studies
##### ProgressTextView
A progress bar that also has a text. The text should be drawn in one color on the 'done' part of the progress and in another color on the 'remaining' part.
See: [guide](https://github.com/ZieIony/GuideToCustomViews/wiki/ProgressTextView), [code](https://github.com/ZieIony/GuideToCustomViews/tree/master/progresstextview).
##### ChartView
A simple bar chart with color state lists and bar selecting with clicks.
Topics covered: drawing on canvas, state lists, touch events.
See: [code](https://github.com/ZieIony/GuideToCustomViews/tree/master/chartview).
A more complete version of the view can be found [here](https://github.com/ZieIony/Carbon/blob/master/carbon/src/main/java/carbon/beta/ChartView.java)
##### FlowLayout
A layout that displays its children in rows, side to side and then in another line.
Topics covered: measuring, laying out, custom layout attributes, right to left support.
See: [code](https://github.com/ZieIony/GuideToCustomViews/tree/master/flowlayout).
##### InvalidEditText
An EditText with support for an invalid state attribute.
Topics covered: custom states.
See: [guide](https://github.com/ZieIony/GuideToCustomViews/wiki/InvalidEditText), [code](https://github.com/ZieIony/GuideToCustomViews/tree/master/invalidedittext).
##### MoodToggle
A very simple toggle with accessibility support.
Topics covered: basic accessibility.
See: [guide](https://github.com/ZieIony/GuideToCustomViews/wiki/MoodToggle), [code](https://github.com/ZieIony/GuideToCustomViews/tree/master/moodtoggle).
##### LandscapeDrawable
An animated Drawable depicting a landscape with customizable items: trees, clouds, stars, a sun, and fog.
Topics covered: drawing on Canvas, custom drawables.
See: [guide](https://github.com/ZieIony/GuideToCustomViews/wiki/LandscapeDrawable), [code](https://github.com/ZieIony/GuideToCustomViews/tree/master/landscapedrawable).