{"id":23381231,"url":"https://github.com/farukcankaya/rtlviewpagerindicator","last_synced_at":"2025-04-08T08:26:50.639Z","repository":{"id":57719227,"uuid":"90128255","full_name":"farukcankaya/RtlViewPagerIndicator","owner":"farukcankaya","description":"Paging indicator widgets compatible with the RtlViewPager. It is inspired from the JakeWharton's ViewPagerIndicator but it supports RTL layout.","archived":false,"fork":false,"pushed_at":"2017-05-07T18:45:23.000Z","size":578,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-14T05:29:47.934Z","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/farukcankaya.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}},"created_at":"2017-05-03T08:50:35.000Z","updated_at":"2017-05-24T20:53:22.000Z","dependencies_parsed_at":"2022-08-26T10:00:23.433Z","dependency_job_id":null,"html_url":"https://github.com/farukcankaya/RtlViewPagerIndicator","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/farukcankaya%2FRtlViewPagerIndicator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farukcankaya%2FRtlViewPagerIndicator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farukcankaya%2FRtlViewPagerIndicator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farukcankaya%2FRtlViewPagerIndicator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/farukcankaya","download_url":"https://codeload.github.com/farukcankaya/RtlViewPagerIndicator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247803223,"owners_count":20998728,"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-12-21T20:48:29.064Z","updated_at":"2025-04-08T08:26:50.599Z","avatar_url":"https://github.com/farukcankaya.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RtlViewPagerIndicator\nPaging indicator widgets compatible with the RtlViewPager. It is inspired from the JakeWharton's \u003ca href=\"https://github.com/JakeWharton/ViewPagerIndicator\"\u003eViewPagerIndicator\u003c/a\u003e but it supports RTL layout.\n\n[ ![Download](https://api.bintray.com/packages/farukcankaya/maven/RtlViewPagerIndicator/images/download.svg) ](https://bintray.com/farukcankaya/maven/RtlViewPagerIndicator/_latestVersion)\n\n# Showcase\n\n| LTR        | RTL           |\n| ------------- |:-------------:|\n| \u003cimg src=\"https://github.com/farukcankaya/RtlViewPagerIndicator/blob/master/art/ltr.gif\" /\u003e      | \u003cimg src=\"https://github.com/farukcankaya/RtlViewPagerIndicator/blob/master/art/rtl.gif\" /\u003e |\n\n# Usage\nNow, it is in jCenter!!\n\n### First step\nPut code below to your build.gradle file that is under /app directory:\n```java\ndependencies {\n    ...\n    compile 'com.farukcankaya.rtlviewpagerindicator:1.0.0'\n}\n```\n\n### Second step\nAdd `CircleIndicator` to your \u003ca href=\"https://github.com/farukcankaya/RtlViewPagerIndicator/blob/master/app/src/main/res/layout/activity_circle_indicator.xml\"\u003exml file\u003c/a\u003e:\n```xml\n\u003ccom.farukcankaya.rtlviewpagerindicator.CircleIndicator\n        android:id=\"@+id/rtl_view_pager_indicator\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_gravity=\"bottom\"\n        android:padding=\"10dp\"\n        app:centered=\"true\"\n        app:fillColor=\"#FFFFFFFF\"\n        app:pageColor=\"#00000000\"\n        app:snap=\"false\"\n        app:strokeColor=\"#FF000000\" /\u003e\n```\n\n### Final step\nSetup viewpager in your \u003ca href=\"https://github.com/farukcankaya/RtlViewPagerIndicator/blob/master/app/src/main/java/com/farukcankaya/rtlviewpagerindicatorsample/CircleIndicatorActivity.java\"\u003eActivity or Fragment\u003c/a\u003e:\n```java\nCircleIndicator rtlCircleIndicator = (CircleIndicator) findViewById(R.id.rtl_view_pager_indicator);\nrtlCircleIndicator.setViewPager(rtlViewPager);\n```\nYou can find working example in **app** module.\n\n# Available Indicators\n\n- [x] Circle \n- [ ] Icon\n- [ ] Ics\n- [ ] Line\n- [ ] Title\n- [ ] Tab\n- [ ] Underline\n\n# License\n````\nCopyright (c) 2017  Faruk Cankaya\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n````\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarukcankaya%2Frtlviewpagerindicator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffarukcankaya%2Frtlviewpagerindicator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarukcankaya%2Frtlviewpagerindicator/lists"}