Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iammert/cameravideobutton
Instagram like animated button for taking photo or recording video.
https://github.com/iammert/cameravideobutton
android animation button camera customview kotlin video
Last synced: 1 day ago
JSON representation
Instagram like animated button for taking photo or recording video.
- Host: GitHub
- URL: https://github.com/iammert/cameravideobutton
- Owner: iammert
- Created: 2019-03-21T14:42:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-18T09:03:50.000Z (over 4 years ago)
- Last Synced: 2024-12-18T14:46:25.773Z (10 days ago)
- Topics: android, animation, button, camera, customview, kotlin, video
- Language: Kotlin
- Size: 2.25 MB
- Stars: 263
- Watchers: 2
- Forks: 33
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CameraVideoButton
Instagram like animated button for taking photo or recording video.[Watch!](https://www.youtube.com/watch?v=4zmgleq5dCw)
## Usage
PS. This is just a dummy view. All recording or taking picture operation is up to you.
```xml
```
Customize it!
```kotlin
videoRecordButton.setVideoDuration(10000)
videoRecordButton.enableVideoRecording(true)
videoRecordButton.enablePhotoTaking(true)
```Observe!
```kotlin
videoRecordButton.actionListener = object : CameraVideoButton.ActionListener{
override fun onStartRecord() {
Log.v("TEST", "Start recording video")
}override fun onEndRecord() {
Log.v("TEST", "Stop recording video")
}override fun onDurationTooShortError() {
Log.v("TEST", "Toast or notify user")
}override fun onSingleTap() {
Log.v("TEST", "Take photo here")
}
}
```## Setup
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}dependencies {
implementation 'com.github.iammert:CameraVideoButton:0.2'
}
```License
--------Copyright 2019 Mert Şimşek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.