{"id":13989280,"url":"https://github.com/pantrif/EasySplashScreen","last_synced_at":"2025-07-22T10:31:40.566Z","repository":{"id":85799535,"uuid":"57435437","full_name":"pantrif/EasySplashScreen","owner":"pantrif","description":"Easily create android splash screen","archived":false,"fork":false,"pushed_at":"2016-05-03T09:32:12.000Z","size":1580,"stargazers_count":308,"open_issues_count":7,"forks_count":55,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-07-06T22:53:02.272Z","etag":null,"topics":["android","android-splash-screen"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pantrif.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-04-30T09:24:48.000Z","updated_at":"2025-04-02T09:25:00.000Z","dependencies_parsed_at":"2023-03-01T22:15:33.231Z","dependency_job_id":null,"html_url":"https://github.com/pantrif/EasySplashScreen","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pantrif/EasySplashScreen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pantrif%2FEasySplashScreen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pantrif%2FEasySplashScreen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pantrif%2FEasySplashScreen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pantrif%2FEasySplashScreen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pantrif","download_url":"https://codeload.github.com/pantrif/EasySplashScreen/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pantrif%2FEasySplashScreen/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266475129,"owners_count":23934886,"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","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-splash-screen"],"created_at":"2024-08-09T13:01:35.462Z","updated_at":"2025-07-22T10:31:40.503Z","avatar_url":"https://github.com/pantrif.png","language":"Java","funding_links":[],"categories":["Java"],"sub_categories":[],"readme":"[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-EasySplashScreen-green.svg?style=true)](https://android-arsenal.com/details/1/3514)\n# Easy Splash Screen Android\nEasily create your company splash screen\n\n\u003cimg src=\"/resources/intro.png\" width=\"80%\" alt=\"Android Easy Splash Screen\"/\u003e\n\nEasy splash screen library allows you to generate beautiful and customizable Splash screens with less effort\n\n\n\n## Usage\n### Setup\nThis library is available on Jcenter.\n\n```groovy\ncompile 'gr.pantrif:easy-android-splash-screen:0.0.1'\n```\n\n\n### Available options\n```java\nView easySplashScreenView = new EasySplashScreen(MainActivity.this)\n                .withFullScreen()\n                .withTargetActivity(TargetActivity.class)\n                .withSplashTimeOut(4000)\n                .withBackgroundResource(android.R.color.holo_red_light)\n                .withHeaderText(\"Header\")\n                .withFooterText(\"Copyright 2016\")\n                .withBeforeLogoText(\"My cool company\")\n                .withLogo(R.drawable.logo)\n                .withAfterLogoText(\"Some more details\")\n                .create();\n\nsetContentView(easySplashScreenView);\n```\n\n### Customize views\n```java\n EasySplashScreen config = new EasySplashScreen(MainActivity.this)\n                .withFullScreen()\n                .withTargetActivity(TargetActivity.class)\n                .withSplashTimeOut(4000)\n                .withBackgroundResource(android.R.color.holo_red_light)\n                .withHeaderText(\"Header\")\n                .withFooterText(\"Copyright 2016\")\n                .withBeforeLogoText(\"My cool company\")\n                .withLogo(R.drawable.logo)\n                .withAfterLogoText(\"Some more details with custom font\");\n    //add custom font\n    Typeface pacificoFont = Typeface.createFromAsset(getAssets(), \"Pacifico.ttf\");\n    config.getAfterLogoTextView().setTypeface(pacificoFont);\n    \n    //change text color\n    config.getHeaderTextView().setTextColor(Color.WHITE);\n    \n    //finally create the view\n    View easySplashScreenView = config.create();\n    setContentView(easySplashScreenView);\n```\n## License\n\n~~~\nThe MIT License (MIT)\nCopyright (c) 2016 Leonidas Maroulis\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n~~~\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpantrif%2FEasySplashScreen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpantrif%2FEasySplashScreen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpantrif%2FEasySplashScreen/lists"}