Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lopspower/circleview

Create circular view in android (change color, border & shadow) ⚫
https://github.com/lopspower/circleview

android circleview customview java kotlin

Last synced: about 17 hours ago
JSON representation

Create circular view in android (change color, border & shadow) ⚫

Awesome Lists containing this project

README

        

CircleView
=================

sample

[![Platform](https://img.shields.io/badge/platform-android-green.svg)](http://developer.android.com/index.html)
[![API](https://img.shields.io/badge/API-14%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=14)
[![Maven Central](https://img.shields.io/maven-central/v/com.mikhaellopez/circleview.svg?label=Maven%20Central)](https://search.maven.org/artifact/com.mikhaellopez/circleview)
[![Twitter](https://img.shields.io/badge/[email protected]?style=flat)](http://twitter.com/lopezmikhael)

This is an Android project allowing to realize a circular View in the simplest way possible. Finish the oval shapes of all colors in your projects.


Android app on Google Play

USAGE
-----

To make a circular View add CircleView in your layout XML and add CircleView library in your project or you can also grab it via Gradle:

```groovy
implementation 'com.mikhaellopez:circleview:1.4.1'
```

XML
-----

```xml

```

You must use the following properties in your XML to change your CircleView.

| Properties | Type | Default |
| ------------------------------- | ------------------------------------------------------------ | --------------- |
| `app:cv_color` | color | WHITE |
| `app:cv_color_start` | color | cv_color |
| `app:cv_color_end` | color | cv_color |
| `app:cv_color_direction` | left_to_right, right_to_left, top_to_bottom or bottom_to_top | left_to_right |
| `app:cv_border` | boolean | false |
| `app:cv_border_width` | dimension | 4dp |
| `app:cv_border_color` | color | BLACK |
| `app:cv_border_color_start` | color | cv_border_color |
| `app:cv_border_color_end` | color | cv_border_color |
| `app:cv_border_color_direction` | left_to_right, right_to_left, top_to_bottom or bottom_to_top | left_to_right |
| `app:cv_shadow` | boolean | false |
| `app:cv_shadow_color` | color | BLACK |
| `app:cv_shadow_radius` | float | 8.0f |
| `app:cv_shadow_gravity` | center, top, bottom, start or end | bottom |

:information_source: You can also use `android:elevation` instead of `app:cv_shadow` to have default Material Design elevation.

KOTLIN
-----

sample

```kotlin
val circleView = findViewById(R.id.circleView)
circleView.apply {
// Set Color
circleColor = Color.WHITE
// or with gradient
circleColorStart = Color.BLACK
circleColorEnd = Color.RED
circleColorDirection = CircleView.GradientDirection.TOP_TO_BOTTOM

// Set Border
borderWidth = 10f
borderColor = Color.BLACK
// or with gradient
borderColorStart = Color.BLACK
borderColorEnd = Color.RED
borderColorDirection = CircleView.GradientDirection.TOP_TO_BOTTOM

// Add Shadow with default param
shadowEnable = true
// or with custom param
shadowRadius = 15f
shadowColor = Color.RED
shadowGravity = CircleView.ShadowGravity.CENTER
}
```

JAVA
-----

```java
CircleView circleView = findViewById(R.id.circleView);

// Set Color
circleView.setCircleColor(Color.WHITE);
// or with gradient
circleView.setCircleColorStart(Color.BLACK);
circleView.setCircleColorEnd(Color.RED);
circleView.setCircleColorDirection(CircleView.GradientDirection.TOP_TO_BOTTOM);

// Set Border
circleView.setBorderWidth(10f);
circleView.setBorderColor(Color.BLACK);
// or with gradient
circleView.setBorderColorStart(Color.BLACK);
circleView.setBorderColorEnd(Color.RED);
circleView.setBorderColorDirection(CircleView.GradientDirection.TOP_TO_BOTTOM);

// Add Shadow with default param
circleView.setShadowEnable(true);
// or with custom param
circleView.setShadowRadius(15f);
circleView.setShadowColor(Color.RED);
circleView.setShadowGravity(CircleView.ShadowGravity.CENTER);
```

SUPPORT ❤️
-----

Find this library useful? Support it by joining [**stargazers**](https://github.com/lopspower/CircleView/stargazers) for this repository ⭐️


And [**follow me**](https://github.com/lopspower?tab=followers) for my next creations 👍

LICENCE
-----

CircleView by [Lopez Mikhael](http://mikhaellopez.com/) is licensed under a [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0).