CameraButton
Instagram-like button for taking photos or recording videos.
Getting started
Add library as dependency to your build.gradle
.
No need to include all dependencies, choose just one which covers your needs.
Please, feel free to open issues you are stuck with. PRs are also welcome :)
How to use?
-
Add
CameraButton
to your xml markup -
Find view and attach needed listeners
-
Enjoy!
Take into account that you can get ConsistencyValidationException
in case some part of the button overlaps other one or crosses view's boundaries. If you don't need "pixel-perfect" checks you can disable them by calling button.shouldCheckConsistency(false)
otherwise you have to set correct sizes.
RxJava and Kotlin
For now only RxJava version 2 is supported. It is implemented according to guidelines of JakeWharton/RxBinding library.
Example of usage:
All events have componentN
function so if you are using Kotlin for development there is ability to use destruction declaration and also there are few extension methods:
Customization
cb_main_circle_radius
orsetMainCircleRadius()
Default value - 28dp
/@dimen/cb_main_circle_radius_default
cb_main_circle_color
orsetMainCircleColor()
Default value - #ffffff
/@color/cb_main_circle_color_default
cb_stroke_width
orsetStrokeWidth()
Default value - 12dp
/@dimen/cb_stroke_width_default
cb_stroke_color
orsetStrokeColor()
Default value - #66FFFFFF
/@color/cb_stroke_color_default
cb_main_circle_radius_expanded
orsetMainCircleRadiusExpanded()
Default value - 24dp
/@dimen/cb_main_circle_radius_expanded_default
- Expanded stroke width can't be set explicitly. It is calculated by following formula:
stroke_width_expanded = min(layout_width, layout_height) - main_circle_expanded
cb_progress_arc_width
orsetProgressArcWidth()
Default value - 4dp
/@dimen/cb_progress_arc_width_default
cb_progress_arc_colors
orsetProgressArcColors()
Default values - [#feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5]
/@array/cb_progress_arc_colors_default
To set values via xml you have to define all colors separately and merge their references into one array:
To set values programmatically you have to call setProgressArcColors
with array of color values: