{"id":17047182,"url":"https://github.com/dynamitechetan/vusikview","last_synced_at":"2026-02-26T00:35:58.724Z","repository":{"id":86924937,"uuid":"78140124","full_name":"dynamitechetan/VusikView","owner":"dynamitechetan","description":"Android library to make notes drop animation for music players","archived":false,"fork":false,"pushed_at":"2017-05-27T06:55:48.000Z","size":3800,"stargazers_count":124,"open_issues_count":4,"forks_count":37,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-26T09:51:16.833Z","etag":null,"topics":["android","android-library","animation-effects","custom-view","library","ui"],"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/dynamitechetan.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-01-05T19:04:10.000Z","updated_at":"2024-06-03T09:41:12.000Z","dependencies_parsed_at":"2023-05-29T20:15:30.216Z","dependency_job_id":null,"html_url":"https://github.com/dynamitechetan/VusikView","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dynamitechetan%2FVusikView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dynamitechetan%2FVusikView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dynamitechetan%2FVusikView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dynamitechetan%2FVusikView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dynamitechetan","download_url":"https://codeload.github.com/dynamitechetan/VusikView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248586584,"owners_count":21129066,"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","animation-effects","custom-view","library","ui"],"created_at":"2024-10-14T09:48:45.205Z","updated_at":"2026-02-26T00:35:53.705Z","avatar_url":"https://github.com/dynamitechetan.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VusikView\n\n[![License](https://img.shields.io/badge/License-Apache%202-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)\n[![API](https://img.shields.io/badge/API-11%2B-brightred.svg)](https://github.com/dynamitechetan/FogView_Library)\n#### Min SDK 11\n## Screnshots\n\n![Screenshot](screenshot/screen1.gif)                      ![Screenshot](screenshot/screen2.gif)\n\n\n## How to use\n\nIf you want use this library, you can download project and import it into your workspace and add the project as a library in your android project settings.\n\n## Using Gradle\nyou have to add these lines in your build.gradle file:\n```xml\nrepositories {\n        jcenter()\n}\n\ndependencies {\n        compile 'dyanamitechetan.vusikview:vusikview:1.1'\n}\n```\n\n## or Using Maven:\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003edyanamitechetan.vusikview\u003c/groupId\u003e\n  \u003cartifactId\u003evusikview\u003c/artifactId\u003e\n  \u003cversion\u003e1.0\u003c/version\u003e\n  \u003ctype\u003epom\u003c/type\u003e\n\u003c/dependency\u003e\n```\n\n\n## BASIC USAGE\nIn XML\n```xml\n   \u003cdyanamitechetan.vusikview.VusikView\n        android:layout_width=\"match_parent\"\n        android:id=\"@+id/vusik\"\n        android:layout_height=\"match_parent\"\n        /\u003e\n```\nIn Java    \n```java\n    vusikView = (VusikView) findViewById(R.id.vusik);\n    vusikView.start();\n```\n## Using own Images \n```java\n    vusikView = (VusikView) findViewById(R.id.vusik);\n    int[]  myImageList = new int[]{R.drawable.note1,R.drawable.note2,R.drawable.note4};\n    vusikView\n            .setImages(myImageList)\n            .start();\n```\n## Pause, Resume, Stop\n```java\n    vusikView.pauseNotesFall();\n    vusikView.resumeNotesFall();\n    vusikView.stopNotesFall;\n```\nThe VusikView have some custom attributes, to use them , you must add this line in your xml file in the first component:\n```xml\n\u003cRelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    \u003e\n\u003c/RelativeLayout\u003e\n```\n\n## Setting a fall speed\n##### Default is 0.1\n```xml\n    \u003cdyanamitechetan.vusikview.VusikView\n        android:layout_width=\"match_parent\"\n        android:id=\"@+id/vusik\"\n        android:layout_height=\"350dp\"\n        app:fallSpeed=\"0.13\"\n        /\u003e\n```\n## Setting Notes Count \n##### Default is 25\n```xml\n \u003cdyanamitechetan.vusikview.VusikView\n        android:layout_width=\"match_parent\"\n        android:id=\"@+id/vusik\"\n        android:layout_height=\"350dp\"\n        app:fallCount=\"40\"\n        /\u003e\n```\n\n\n## License\nCopyright (c) 2016 Chetan Kaushik\n\nLicensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)\n\n* Screenshot 2 UI taken from :-  https://material.uplabs.com/posts/music-app-ui-exploration\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdynamitechetan%2Fvusikview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdynamitechetan%2Fvusikview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdynamitechetan%2Fvusikview/lists"}