{"id":21957600,"url":"https://github.com/sephiroth74/rangeseekbar","last_synced_at":"2025-04-23T16:20:34.754Z","repository":{"id":144563927,"uuid":"81494800","full_name":"sephiroth74/RangeSeekBar","owner":"sephiroth74","description":"A Range Slider for Android.","archived":false,"fork":false,"pushed_at":"2020-01-29T17:56:18.000Z","size":128888,"stargazers_count":99,"open_issues_count":7,"forks_count":18,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-30T01:23:42.328Z","etag":null,"topics":["android","android-library","android-ui","material-design","range-slider","seekbar","slider","widget"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sephiroth74.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}},"created_at":"2017-02-09T21:05:17.000Z","updated_at":"2025-02-19T09:28:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"c8f08c83-4da8-4f31-82eb-7a8b9b6adc9f","html_url":"https://github.com/sephiroth74/RangeSeekBar","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sephiroth74%2FRangeSeekBar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sephiroth74%2FRangeSeekBar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sephiroth74%2FRangeSeekBar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sephiroth74%2FRangeSeekBar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sephiroth74","download_url":"https://codeload.github.com/sephiroth74/RangeSeekBar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250468275,"owners_count":21435453,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","android-library","android-ui","material-design","range-slider","seekbar","slider","widget"],"created_at":"2024-11-29T08:54:44.711Z","updated_at":"2025-04-23T16:20:34.745Z","avatar_url":"https://github.com/sephiroth74.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Range SeekBar\n\n[ ![Download](https://api.bintray.com/packages/bintray/jcenter/it.sephiroth.android.library.rangeseekbar%3Arangeseekbar/images/download.svg) ](https://bintray.com/bintray/jcenter/it.sephiroth.android.library.rangeseekbar%3Arangeseekbar/_latestVersion)\n[![](https://jitpack.io/v/sephiroth74/RangeSeekbar.svg)](https://jitpack.io/#sephiroth74/RangeSeekbar)\n\n\nSimilar to the Android built-in SeekBar, but it allows to edit a values in a range (start, end).\n\u003cbr /\u003e\n\n\u003cimg src=\"./art/video.gif\" width=\"478\" height=\"476\" label=\"screenshot\" /\u003e\n\n\n---\n\n## Installation\n### Maven\nAdd the library dependency:\n\n    implementation 'it.sephiroth.android.library.rangeseekbar:rangeseekbar:**version**'\n\n### JitPack\n**Step 1.** Add the JitPack repository to your build file:\n\n\tallprojects {\n\t\trepositories {\n\t\t\t...\n\t\t\tmaven { url 'https://jitpack.io' }\n\t\t}\n\t}\n\t\n**Step 2.** Add the dependency to your project's build.gradle file:\n\n\tdependencies {\n\t        implementation 'com.github.sephiroth74:RangeSeekBar:Tag'\n\t}\n\nTo See the last release version: https://jitpack.io/private#sephiroth74/RangeSeekBar\n\n---\n\n## Usage\n\n\tlayout:\n\n      \u003cit.sephiroth.android.library.rangeseekbar.RangeSeekBar\n        android:id=\"@+id/rangeSeekBar\"\n        style=\"@style/Base.Sephiroth.Widget.RangeSeekBar\"\n        android:layout_width=\"0dp\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginEnd=\"8dp\"\n        android:layout_marginRight=\"8dp\"\n        android:layout_marginTop=\"8dp\"\n        android:max=\"100\"\n        app:layout_constraintLeft_toLeftOf=\"@+id/textView\"\n        app:layout_constraintRight_toRightOf=\"parent\"\n        app:layout_constraintTop_toBottomOf=\"@+id/textView\"\n        app:range_progress_endValue=\"60\"\n        app:range_progress_startEnd_minDiff=\"1\"\n        app:range_progress_startValue=\"50\" /\u003e\n\t\n\tjava:\n\t\n        seekbar.setOnRangeSeekBarChangeListener(new RangeSeekBar.OnRangeSeekBarChangeListener() {\n            @Override\n            public void onProgressChanged(\n                final RangeSeekBar seekBar, final int progressStart, final int progressEnd, final boolean fromUser) { }\n\n            @Override\n            public void onStartTrackingTouch(final RangeSeekBar seekBar) { }\n\n            @Override\n            public void onStopTrackingTouch(final RangeSeekBar seekBar) { }\n        });\t\n\t\n\nTo see the list of all the available attributes, see [attrs.xml](./rangeseekbar-library/src/main/res/values/attrs.xml)\n\n\n---\n\n## License\n\nMIT License\n\nCopyright (c) 2017 Alessandro Crugnola\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsephiroth74%2Frangeseekbar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsephiroth74%2Frangeseekbar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsephiroth74%2Frangeseekbar/lists"}