{"id":19793647,"url":"https://github.com/h6ah4i/android-verticalseekbar","last_synced_at":"2025-04-12T23:33:01.162Z","repository":{"id":25659396,"uuid":"29094941","full_name":"h6ah4i/android-verticalseekbar","owner":"h6ah4i","description":"Vertical SeekBar class which supports Android 4.x - 9.x.","archived":false,"fork":false,"pushed_at":"2023-08-21T04:59:07.000Z","size":586,"stargazers_count":510,"open_issues_count":12,"forks_count":95,"subscribers_count":13,"default_branch":"main","last_synced_at":"2025-04-04T02:09:55.636Z","etag":null,"topics":["android","seekbar","vertical"],"latest_commit_sha":null,"homepage":"","language":"Java","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/h6ah4i.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":"2015-01-11T14:51:55.000Z","updated_at":"2025-03-14T03:52:11.000Z","dependencies_parsed_at":"2024-11-12T07:10:43.716Z","dependency_job_id":"28ed2c5c-1ebf-4090-824d-23482ecd5a75","html_url":"https://github.com/h6ah4i/android-verticalseekbar","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h6ah4i%2Fandroid-verticalseekbar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h6ah4i%2Fandroid-verticalseekbar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h6ah4i%2Fandroid-verticalseekbar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h6ah4i%2Fandroid-verticalseekbar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/h6ah4i","download_url":"https://codeload.github.com/h6ah4i/android-verticalseekbar/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248647258,"owners_count":21139081,"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","seekbar","vertical"],"created_at":"2024-11-12T07:10:40.782Z","updated_at":"2025-04-12T23:33:01.140Z","avatar_url":"https://github.com/h6ah4i.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"VerticalSeekBar\n===============\n\nVertical SeekBar class which supports Android 4.x - 9.x.\n\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.h6ah4i.android.widget.verticalseekbar/verticalseekbar/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.h6ah4i.android.widget.verticalseekbar/verticalseekbar)\n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-VerticalSeekBar-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/1436)\n\n---\n\n### Screenshots\n|    ICS    | Lollipop   | Marshmallow |\n|-----------|------------|-------------|\n| \u003cimg src=\"./pic/ics.png?raw=true\" alt=\"Example on Android 4.0\" width=\"150\" /\u003e | \u003cimg src=\"./pic/lollipop.png?raw=true\" alt=\"Example on Android 5.0\" width=\"150\" /\u003e | \u003cimg src=\"./pic/marshmallow.png?raw=true\" alt=\"Example on Android 5.0\" width=\"150\" /\u003e |\n\n### Download the demo app on Google Play\n\u003ca href=\"https://play.google.com/store/apps/details?id=com.h6ah4i.android.example.verticalseekbar\u0026utm_source=global_co\u0026utm_medium=prtnr\u0026utm_content=Mar2515\u0026utm_campaign=PartBadge\u0026pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1\"\u003e\u003cimg alt=\"Get it on Google Play\" src=\"https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png\" height=\"48\" /\u003e\u003c/a\u003e\n\n---\n\nTarget platforms\n---\n\n- from Android 4.0.x  (IceCreamSandwich)\n- to Android 9.x (Pie)\n\n\nLatest version\n---\n\n- Version 1.0.0  (September 25, 2018)\n\n\n\nGetting started\n---\n\nThis library is published on Maven Central. Just add these lines to `build.gradle`.\n\n```diff\nrepositories {\n+     mavenCentral()\n}\n\ndependencies {\n+     implementation 'com.h6ah4i.android.widget.verticalseekbar:verticalseekbar:1.0.0'\n}\n```\n\nUsage\n---\n\n### Layout XML\n\n```xml\n\u003c!-- This library requires pair of the VerticalSeekBar and VerticalSeekBarWrapper classes --\u003e\n\u003ccom.h6ah4i.android.widget.verticalseekbar.VerticalSeekBarWrapper\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"150dp\"\u003e\n    \u003ccom.h6ah4i.android.widget.verticalseekbar.VerticalSeekBar\n        android:id=\"@+id/mySeekBar\"\n        android:layout_width=\"0dp\"\n        android:layout_height=\"0dp\"\n        android:splitTrack=\"false\"\n        app:seekBarRotation=\"CW90\" /\u003e \u003c!-- Rotation: CW90 or CW270 --\u003e\n\u003c/com.h6ah4i.android.widget.verticalseekbar.VerticalSeekBarWrapper\u003e\n```\n\n**NOTE: `android:splitTrack=\"false\"` is required for Android N+.**\n\n### Java code\n\n```java\nSeekBar seekBar = (SeekBar) findViewById(R.id.mySeekBar);\n...\n```\n\nLicense\n---\n\nThis library is licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0), and contains some source code files delivered from product of Android Open Source Project (AOSP).\n\nSee [`LICENSE`](LICENSE) for full of the license text.\n\n    Copyright (C) 2015 Haruki Hasegawa\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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh6ah4i%2Fandroid-verticalseekbar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fh6ah4i%2Fandroid-verticalseekbar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh6ah4i%2Fandroid-verticalseekbar/lists"}