# CircleIndicator **Repository Path**: chen3441251/CircleIndicator ## Basic Information - **Project Name**: CircleIndicator - **Description**: A lightweight viewpager indicator like in nexus 5 launcher - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-26 - **Last Updated**: 2024-11-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README CircleIndicator =============== A lightweight viewpager indicator like in nexus 5 launcher [ ![Download](https://api.bintray.com/packages/ongakuer/maven/CircleIndicator/images/download.svg) ](https://bintray.com/ongakuer/maven/CircleIndicator/_latestVersion) ![CircleIndicator](/screenshot.gif) Gradle ------------ ```groovy dependencies { compile 'me.relex:circleindicator:1.2.1@aar' } ``` Usage -------- ```xml ``` ```java ViewPager viewpager = (ViewPager) view.findViewById(R.id.viewpager); CircleIndicator indicator = (CircleIndicator) view.findViewById(R.id.indicator); viewpager.setAdapter(mPageAdapter); indicator.setViewPager(viewpager); ``` #####Properties: * `app:ci_width` * `app:ci_height` * `app:ci_margin` * `app:ci_drawable` * `app:ci_drawable_unselected` * `app:ci_animator` * `app:ci_animator_reverse` * `app:ci_orientation` (default:horizontal) * `app:ci_gravity` (default:center) [Changelog](/CHANGELOG.md) ------------ ##### v1.2.0 Please change like this if you used dynamic adapter ```java viewpager.setAdapter(mAdapter); indicator.setViewPager(viewpager); mAdapter.registerDataSetObserver(indicator.getDataSetObserver()); ``` License -------- ``` Copyright (C) 2014 relex Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ```