{"id":17679406,"url":"https://github.com/florent37/tutoshowcase","last_synced_at":"2025-04-05T13:09:34.380Z","repository":{"id":91120237,"uuid":"65184575","full_name":"florent37/TutoShowcase","owner":"florent37","description":"A simple and Elegant Showcase view for Android","archived":false,"fork":false,"pushed_at":"2018-11-06T11:06:03.000Z","size":2555,"stargazers_count":507,"open_issues_count":24,"forks_count":86,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-03-29T12:11:10.940Z","etag":null,"topics":["android","application","design","fluid","java","library","material","sample","showcase","tuto","tutorial"],"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/florent37.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":"2016-08-08T07:57:18.000Z","updated_at":"2025-03-23T01:10:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"01424ff2-7022-4ec8-8011-dffd998cd4e2","html_url":"https://github.com/florent37/TutoShowcase","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/florent37%2FTutoShowcase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florent37%2FTutoShowcase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florent37%2FTutoShowcase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florent37%2FTutoShowcase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/florent37","download_url":"https://codeload.github.com/florent37/TutoShowcase/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247339158,"owners_count":20923014,"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","application","design","fluid","java","library","material","sample","showcase","tuto","tutorial"],"created_at":"2024-10-24T08:41:52.244Z","updated_at":"2025-04-05T13:09:34.349Z","avatar_url":"https://github.com/florent37.png","language":"Java","funding_links":["https://ko-fi.com/A160LCC'"],"categories":[],"sub_categories":[],"readme":"# Tuto Showcase\n\nA simple and Elegant Showcase view for Android\n\n\n\u003ca href=\"https://goo.gl/WXW8Dc\"\u003e\n  \u003cimg alt=\"Android app on Google Play\" src=\"https://developer.android.com/images/brand/en_app_rgb_wo_45.png\" /\u003e\n\u003c/a\u003e\n\n\n[![screen](https://raw.githubusercontent.com/florent37/TutoShowcase/master/media/sample.png)](https://github.com/florent37/TutoShowcase)\n\n```java\nTutoShowcase.from(this)\n    .setContentView(R.layout.tuto_sample)\n\n    .on(R.id.about) //a view in actionbar\n    .addCircle()\n    .withBorder()\n    .onClick(new View.OnClickListener() {\n        @Override\n        public void onClick(View v) {\n            //custom action\n        }\n    })\n\n    .on(R.id.swipable)\n    .displaySwipableRight()\n\n    .show();\n```\n\n# Download\n\n\u003ca href='https://ko-fi.com/A160LCC' target='_blank'\u003e\u003cimg height='36' style='border:0px;height:36px;' src='https://az743702.vo.msecnd.net/cdn/kofi1.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' /\u003e\u003c/a\u003e\n\n[ ![Download](https://api.bintray.com/packages/florent37/maven/TutoShowcase/images/download.svg) ](https://bintray.com/florent37/maven/TutoShowcase/_latestVersion)\n\n```groovy\ncompile 'com.github.florent37:tutoshowcase:1.0.1'\n```\n\n# Tutorial\n\nYou can simply limit a showcase visibility to once with `.showOnce(string)`\n\n# Content View\n\nIt's simple to add a content view into the TutoShowcase,\nyou can for example add images or descriptions texts\n\n```java\nTutoShowcase.from(this)\n    .setContentView(R.layout.tuto_sample)\n    ...\n    .show()\n```\n\n[![screen](https://raw.githubusercontent.com/florent37/TutoShowcase/master/media/content.png)](https://github.com/florent37/TutoShowcase)\n\n# Indicators\n\nYou can higlight some elements to user\n\n## Circle\n\n```java\n.on(view)\n.addCircle()\n```\n\n[![screen](https://raw.githubusercontent.com/florent37/TutoShowcase/master/media/circle.png)](https://github.com/florent37/TutoShowcase)\n\n## RoundRect\n\n```java\n.on(view)\n.addRoundRect()\n```\n\n[![screen](https://raw.githubusercontent.com/florent37/TutoShowcase/master/media/roundrect.png)](https://github.com/florent37/TutoShowcase)\n\n# Actions\n\nSome actions can be explained to the user\n\n## Scrollable\n\n```java\n.on(view)\n.displayScrollable()\n```\n\n## Swipable Left\n\n```java\n.on(view)\n.displaySwipableLeft()\n```\n\n[![screen](https://raw.githubusercontent.com/florent37/TutoShowcase/master/media/swipeLeft.gif)](https://github.com/florent37/TutoShowcase)\n\n## Swipable Right\n\n```java\n.on(view)\n.displaySwipableRight()\n```\n\n[![screen](https://raw.githubusercontent.com/florent37/TutoShowcase/master/media/swipeRight.gif)](https://github.com/florent37/TutoShowcase)\n\n# Events\n\nYou can listen for indicator click\n\n```java\n.on(view)\n. //your indicator\n.onClick(new View.OnClickListener(){\n    public void onClick(View view){\n         //your action\n    }\n}\n```\n\nIf you have any clickable view into your content layout \n\n```java\nTutoShowcase.from(this)\n    .setContentView(R.layout.tuto_sample)\n    .onClickContentView(R.id.clickableView, new View.OnClickListener() {\n        @Override\n        public void onClick(View view) {\n                            \n        }\n    })\n    ...\n    .show()\n```\n\n\u003ca href=\"https://goo.gl/WXW8Dc\"\u003e\n  \u003cimg alt=\"Android app on Google Play\" src=\"https://developer.android.com/images/brand/en_app_rgb_wo_45.png\" /\u003e\n\u003c/a\u003e\n\nFiches Plateau Moto : [https://www.fiches-plateau-moto.fr/](https://www.fiches-plateau-moto.fr/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorent37%2Ftutoshowcase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflorent37%2Ftutoshowcase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorent37%2Ftutoshowcase/lists"}