{"id":3473,"url":"https://github.com/kunall17/EntryScreenManager","last_synced_at":"2025-08-03T20:32:27.653Z","repository":{"id":88032001,"uuid":"49153113","full_name":"kunall17/EntryScreenManager","owner":"kunall17","description":"Entry Screens for Android","archived":false,"fork":false,"pushed_at":"2016-03-05T13:53:38.000Z","size":889,"stargazers_count":41,"open_issues_count":1,"forks_count":10,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-08-16T14:34:33.859Z","etag":null,"topics":[],"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/kunall17.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}},"created_at":"2016-01-06T18:19:53.000Z","updated_at":"2024-01-04T15:47:10.000Z","dependencies_parsed_at":"2023-03-13T18:32:51.018Z","dependency_job_id":null,"html_url":"https://github.com/kunall17/EntryScreenManager","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/kunall17%2FEntryScreenManager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kunall17%2FEntryScreenManager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kunall17%2FEntryScreenManager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kunall17%2FEntryScreenManager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kunall17","download_url":"https://codeload.github.com/kunall17/EntryScreenManager/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228567009,"owners_count":17937983,"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":[],"created_at":"2024-01-05T20:16:42.495Z","updated_at":"2024-12-07T05:30:34.550Z","avatar_url":"https://github.com/kunall17.png","language":"Java","funding_links":[],"categories":["Libraries","Libs","ALL"],"sub_categories":["GUI","\u003cA NAME=\"Widget\"\u003e\u003c/A\u003eWidget"],"readme":"Entry Screens for android\n================\nLove to see those descriptions of swipe screens in android apps?\nHere is a library for you!\n\n* [How to Use](#usage)\n* [Contribute](#contribute)\n* [How does it looks like](#looks)\n\n\nUsage\n-------\n\nIf you are starting from scratch \n\n* Import complete project into Android studio.\n* Customize the screens in the entryScreen module.\n* Rename the package name and folders according to your preference!\n\n\nIf you want to import to your existing Project  \n\n* Import entryScreens library into your existing project (File-\u003eNew Module-\u003eImport Gradle Project) And select the source folder as the entryScreens library in this project.\n* Now add (To add library to your gradle)\n```\n    compile project(':entryScreens')\n```\nto your gradle of existing application (:app) module.\n\n* And Use this code to your activity you want to start these screens! (To load this library in start of your activity!)\n\n```\n   \n    private static int REQUEST_CODE = 435;\n    @Override\n    protected void onActivityResult(int requestCode, int resultCode, final Intent data) {\n\n        if (requestCode == REQUEST_CODE) {\n            setContentView(R.layout.activity_main);\n\n            if (resultCode == Activity.RESULT_OK) {\n                //Write your code if result is OK\n                FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);\n                fab.setOnClickListener(new View.OnClickListener() {\n                    @Override\n                    public void onClick(View view) {\n                        Snackbar.make(view, data.getStringExtra(\"SomeValues\"), Snackbar.LENGTH_LONG)\n                                .setAction(\"Done!\", null).show();\n                    }\n                });\n            }\n            if (resultCode == Activity.RESULT_CANCELED) {\n                //Write your code if there's no result\n            }\n            Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);\n            setSupportActionBar(toolbar);\n        }\n\n    }\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        Intent i = new Intent(MainActivity.this, com.kunall17.entryscreenmanager.Activities.MainActivity.class);\n        startActivityForResult(i, REQUEST_CODE);\n\n    }\n```\n\n* And finally add this to your existing (:app) Module AndroidManifest.xml (To define a activity in your manifest!)\n\n```\n\u003cactivity\n            android:name=\"com.kunall17.entryscreenmanager.Activities.MainActivity\"\n            android:configChanges=\"orientation|keyboardHidden|screenSize\"\n            android:label=\"@string/title_activity_main\"\n            android:screenOrientation=\"portrait\"\n            android:theme=\"@style/AppTheme.NoActionBar\"\u003e\n            \n            \u003caction android:name=\"com.kunall17.entryscreenmanager.Activities.MainActivity.LAUNCH\" /\u003e\n\u003c/activity\u003e\n```\n           \nContribute\n-------\n* Fork it!\n* Commit your changes: git commit -am 'Add some feature'\n* Push to the branch: git push origin my-new-feature\n* Submit a pull request :D\n\nLooks\n-------\nMore templates to come!\n\n\u003cimg alt=\"Screenshot\" src=\"https://raw.githubusercontent.com/kunall17/EntryScreenManager/screenshots/entryscreen.gif\" width=\"432\" height=\"712\" border=\"5\" /\u003e \n\u003cimg alt=\"Screenshot\" src=\"https://raw.githubusercontent.com/kunall17/EntryScreenManager/screenshots/login.png\" width=\"432\" height=\"712\" border=\"5\" /\u003e \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkunall17%2FEntryScreenManager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkunall17%2FEntryScreenManager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkunall17%2FEntryScreenManager/lists"}