{"id":37043572,"url":"https://github.com/emrekose26/recordbutton","last_synced_at":"2026-01-14T05:00:56.467Z","repository":{"id":86376897,"uuid":"107391083","full_name":"emrekose26/RecordButton","owner":"emrekose26","description":"Android record button view","archived":false,"fork":false,"pushed_at":"2018-10-07T08:58:58.000Z","size":1610,"stargazers_count":71,"open_issues_count":4,"forks_count":15,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-02T05:54:59.604Z","etag":null,"topics":["android","androidviews","button","customview"],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emrekose26.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-10-18T10:09:35.000Z","updated_at":"2025-01-11T06:49:00.000Z","dependencies_parsed_at":"2023-06-09T00:45:29.552Z","dependency_job_id":null,"html_url":"https://github.com/emrekose26/RecordButton","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/emrekose26/RecordButton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emrekose26%2FRecordButton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emrekose26%2FRecordButton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emrekose26%2FRecordButton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emrekose26%2FRecordButton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emrekose26","download_url":"https://codeload.github.com/emrekose26/RecordButton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emrekose26%2FRecordButton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28410074,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","androidviews","button","customview"],"created_at":"2026-01-14T05:00:44.006Z","updated_at":"2026-01-14T05:00:56.399Z","avatar_url":"https://github.com/emrekose26.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Record Button\n[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)]()\n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-RecordButton-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/6351)\n\n![](https://raw.githubusercontent.com/emrekose26/RecordButton/master/art/recordbutton.gif)\n\n\n\n\n This is a library which can you create a record button view in android\n\n\n# Download\n#### 1.Add this in your root `build.gradle` at the end of repositories:\n    allprojects {\n        repositories {\n            ...\n            maven { url \"https://jitpack.io\" }\n        }\n    }\n  \n#### 2.Add this dependency in your app level `build.gradle`:\n    dependencies {\n        ...\n       compile 'com.github.emrekose26:RecordButton:1.2.4'\n    }\n\n\n# Usage\n### 1. In your layout XML file:\n```xml\n\u003ccom.emrekose.recordbutton.RecordButton\n    android:id=\"@+id/recordBtn\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    app:buttonGap=\"10dp\"\n    app:buttonRadius=\"40dp\"\n    app:maxMilisecond=\"10000\"\n    app:progressColor=\"@color/colorPrimary\"\n    app:progressStroke=\"15\"\n    app:recordIcon=\"@drawable/ic_keyboard_voice_white_36dp\" /\u003e\n```\n  \n### 2. In your class file:\n\n```java\nRecordButton recordButton = (RecordButton) findViewById(R.id.recordBtn);\n\n        recordButton.setRecordListener(new OnRecordListener() {\n            @Override\n            public void onRecord() {\n                Log.e(TAG, \"onRecord: \");\n            }\n            \n            @Override\n            public void onRecordCancel() {\n                Log.e(TAG, \"onRecordCancel: \");\n            }\n            \n            @Override\n            public void onRecordFinish() {\n                Log.e(TAG, \"onRecordFinish: \");\n            }\n        });\n```\n\n# License\n    Copyright 2017 Emre Köse\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femrekose26%2Frecordbutton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femrekose26%2Frecordbutton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femrekose26%2Frecordbutton/lists"}