{"id":23129647,"url":"https://github.com/naxam/rippleeffect-android-binding","last_synced_at":"2025-08-17T06:32:31.039Z","repository":{"id":54751788,"uuid":"99030876","full_name":"NAXAM/rippleeffect-android-binding","owner":"NAXAM","description":"Xamarin Android Binding Library for Traex RippleEffect","archived":false,"fork":false,"pushed_at":"2017-08-03T03:37:19.000Z","size":96,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-04T12:16:09.087Z","etag":null,"topics":["bindings","ripple","ripple-animation","ripple-effect","rippleeffect","rippleview","xamarin","xamarin-android-binding"],"latest_commit_sha":null,"homepage":null,"language":"C#","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/NAXAM.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}},"created_at":"2017-08-01T18:22:09.000Z","updated_at":"2022-08-08T17:40:29.000Z","dependencies_parsed_at":"2022-08-14T01:40:49.811Z","dependency_job_id":null,"html_url":"https://github.com/NAXAM/rippleeffect-android-binding","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/NAXAM%2Frippleeffect-android-binding","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NAXAM%2Frippleeffect-android-binding/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NAXAM%2Frippleeffect-android-binding/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NAXAM%2Frippleeffect-android-binding/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NAXAM","download_url":"https://codeload.github.com/NAXAM/rippleeffect-android-binding/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230098721,"owners_count":18172741,"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":["bindings","ripple","ripple-animation","ripple-effect","rippleeffect","rippleview","xamarin","xamarin-android-binding"],"created_at":"2024-12-17T10:10:04.132Z","updated_at":"2024-12-17T10:10:04.760Z","avatar_url":"https://github.com/NAXAM.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"RippleEffect - Xamarin Android Binding Library\n================\n\n![RippleEffect](https://github.com/traex/RippleEffect/blob/master/header.png)\n\nExpandableLayout provides an easy way to create a view called header with an expandable view. Both view are external layout to allow a maximum of customization. [You can find a sample](https://github.com/traex/ExpandableLayout/blob/master/sample/) that how to use an ExpandableLayout to your layout.\n\n![RippleEffect GIF](https://github.com/traex/RippleEffect/blob/master/demo.gif)\n\n### Integration\n\n```\nInstall-Package Naxam.RippleEffect.Droid\n```\n\n### Usage\n\n#### RippleView\n\nDeclare a RippleView inside your XML layout file with a content like an ImageView or whatever.\n\n``` xml\n\u003ccom.andexert.library.RippleView\n  android:id=\"@+id/more\"\n  android:layout_width=\"?android:actionBarSize\"\n  android:layout_height=\"?android:actionBarSize\"\n  android:layout_toLeftOf=\"@+id/more2\"\n  android:layout_margin=\"5dp\"\n  rv_centered=\"true\"\u003e\n\n  \u003cImageView\n    android:layout_width=\"?android:actionBarSize\"\n    android:layout_height=\"?android:actionBarSize\"\n    android:src=\"@android:drawable/ic_menu_edit\"\n    android:layout_centerInParent=\"true\"\n    android:padding=\"10dp\"\n    android:background=\"@android:color/holo_blue_dark\"/\u003e\n\n\u003c/com.andexert.library.RippleView\u003e\n```\n\nIf you want to know when the Ripple effect is finished, you can set a listener on your view\n``` java\n    rippleView.setOnRippleCompleteListener(new RippleView.OnRippleCompleteListener() {\n\n        @Override\n        public void onComplete(RippleView rippleView) {\n            Log.d(\"Sample\", \"Ripple completed\");\n        }\n\n    });\n```\n\nIf you want to add an `OnClickListener` don't forget to add it to the RippleView like this:\n``` java\n    final RippleView rippleView = (RippleView) findViewById(R.id.rippleView);\n    rippleView.setOnClickListener(new View.OnClickListener() {\n        @Override\n        public void onClick(View v) {\n            //TODO: onRippleViewClick\n        }\n    });\n```\n\n\n### Customization\n\nYou can change several attributes in the XML file, you have to remove \"rv_\" if you are using a version below v1.1.1 :\n\n* app:rv_alpha [integer def:90 0-255] --\u003e Alpha of the ripple\n* app:rv_framerate [integer def:10] --\u003e Frame rate of the ripple animation\n* app:rv_rippleDuration [integer def:400] --\u003e Duration of the ripple animation\n* app:rv_ripplePadding [dimension def:0] --\u003e Add a padding to the ripple\n* app:rv_color [color def:@android:color/white] --\u003e Color of the ripple\n* app:rv_centered [boolean def:false] --\u003e Center ripple in the child view\n* app:rv_type [enum (simpleRipple, doubleRipple) def:simpleRipple] --\u003e Simple or double ripple\n* app:rv_zoom [boolean def:false] --\u003e Enable zoom animation\n* app:rv_zoomDuration [integer def:150] --\u003e Duration of zoom animation\n* app:rv_zoomScale [float def:1.03] --\u003e Scale of zoom animation\n\nFor each attribute you can use getters and setters to change values dynamically.\n\n### Troubleshooting\n\nIf you want to use the double ripple you have to set a background for the RippleView or for its child.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaxam%2Frippleeffect-android-binding","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnaxam%2Frippleeffect-android-binding","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaxam%2Frippleeffect-android-binding/lists"}