{"id":15458290,"url":"https://github.com/imanneo/dottedview","last_synced_at":"2025-04-22T10:19:26.953Z","repository":{"id":121666358,"uuid":"103096147","full_name":"imaNNeo/DottedView","owner":"imaNNeo","description":"Drawing Dots in android","archived":false,"fork":false,"pushed_at":"2017-09-20T05:54:35.000Z","size":176,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-21T09:56:44.959Z","etag":null,"topics":["android","circle","customview","dashview","dot","dot-base","dot-sequence","dottedview"],"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/imaNNeo.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":"2017-09-11T06:06:11.000Z","updated_at":"2021-06-01T06:50:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"712af4ba-bcdb-40a7-a1de-e6d4118c2aaa","html_url":"https://github.com/imaNNeo/DottedView","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/imaNNeo%2FDottedView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imaNNeo%2FDottedView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imaNNeo%2FDottedView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imaNNeo%2FDottedView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imaNNeo","download_url":"https://codeload.github.com/imaNNeo/DottedView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250221162,"owners_count":21394679,"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","circle","customview","dashview","dot","dot-base","dot-sequence","dottedview"],"created_at":"2024-10-01T23:00:38.022Z","updated_at":"2025-04-22T10:19:26.906Z","avatar_url":"https://github.com/imaNNeo.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DottedView\n\nWe can draw dash lines in android in simple way,\nbut i didn't find simple way to create Dotted Like.\nBy this library you can make everything you want with Dots.\n\n## 1 - Getting Started\n\nBy this instructions you can add this library and i will explain how use it.\n\n\u003cimg src=\"http://ikhoshabi.com/ss/DottedView/main_screenshot.png\" width=\"400\"\u003e\n\n\n### Add Maven to your root build.gradle\n\nFirst of all Add it in your root build.gradle at the end of repositories:\n\n```\nallprojects {\n  repositories {\n    ...\n    maven { url 'https://jitpack.io' }\n  }\n}\n```\n\n### Add Dependency\n\nAdd the dependency to your app build.gradle file\n\n```\ndependencies\n{\n    compile 'com.github.imaNNeoFighT:DottedView:-SNAPSHOT'\n}\n```\n\nAnd then sync your gradle and take a tea.\n\n\n## 2 - About The View\nYou can simply use this View like other Views in android,\njust add ``DottedView`` in your java code or xml.\n\n## View Properties\nyou can use this properties for make everything you want,\nand all af them is arbitary.\n\n* `dv_dotColor`\n  by this property you can specify the color of Dots, default value is `#107cff`\n\n* `dv_dotSize`\n  by this property you can specify the size of Dots, default value is `15dp`\n\n* `dv_dotHSpace`\n  by this property you can specify Horizontal space of Dots, default value is `10dp`\n\n* `dv_dotVSpace`\n  by this property you can specify Vertical space of Dots, default value is `10dp`\n\n* `dv_dotStrokeColor`\n  by this property you can specify Stroke Color of Dots, default value is `#cc1a52`\n\n* `dv_dotStrokeWidth`\n  by this property you can specify Stroke Size of Dots, default value is `1dp`\n\n\n\n\n\n\n## 3 - Use in Code\n\n\n### Sample 1\n\n```\n\u003ccom.neo.dottedview.DottedView\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"12dp\"\n  app:dv_dotSize=\"12dp\"\n  app:dv_dotStrokeWidth=\"0dp\"\n  app:dv_dotHSpace=\"4dp\"\n  app:dv_dotColor=\"#545454\"\n  /\u003e\n```\nyou will see this output\n\n\u003cimg src=\"http://ikhoshabi.com/ss/DottedView/sample1.png\" width=\"300\"\u003e\n\n\n\n\n\n\n\n\n### Sample 2\n\n```\n\u003ccom.neo.dottedview.DottedView\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"8dp\"\n  app:dv_dotSize=\"8dp\"\n  app:dv_dotStrokeWidth=\"0dp\"\n  app:dv_dotHSpace=\"0dp\"\n  app:dv_dotColor=\"#ff0000\"\n  /\u003e\n```\nyou will see this output\n\n\u003cimg src=\"http://ikhoshabi.com/ss/DottedView/sample2.png\" width=\"300\"\u003e\n\n\n\n\n\n\n\n\n### Sample 3\n\n```\n\u003ccom.neo.dottedview.DottedView\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"28dp\"\n  app:dv_dotSize=\"20dp\"\n  app:dv_dotStrokeWidth=\"4dp\"\n  app:dv_dotHSpace=\"22dp\"\n  app:dv_dotColor=\"#fb00ff\"\n  app:dv_dotStrokeColor=\"#0dff00\"\n  /\u003e\n```\nyou will see this output\n\n\u003cimg src=\"http://ikhoshabi.com/ss/DottedView/sample3.png\" width=\"300\"\u003e\n\n\n\n\n\n\n\n\n### Sample 4\n\n```\n\u003ccom.neo.dottedview.DottedView\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"280dp\"\n    app:dv_dotSize=\"18dp\"\n    app:dv_dotStrokeWidth=\"4dp\"\n    app:dv_dotHSpace=\"0dp\"\n    app:dv_dotVSpace=\"18dp\"\n    app:dv_dotColor=\"#707070\"\n    app:dv_dotStrokeColor=\"#25af7f\"\n    /\u003e\n```\nyou will see this output\n\n\u003cimg src=\"http://ikhoshabi.com/ss/DottedView/sample4.png\" width=\"300\"\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimanneo%2Fdottedview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimanneo%2Fdottedview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimanneo%2Fdottedview/lists"}