Popularity
7.8
Stable
Activity
0.0
Stable
1,469
92
362

Programming language: Java
License: Apache License 2.0
Tags: Button Widget    

android-circlebutton alternatives and similar packages

Based on the "Button Widget" category.
Alternatively, view android-circlebutton alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of android-circlebutton or a related project?

Add another 'Button Widget' Package

README

DEPRECATED

This library is deprecated and no new development is taking place. Consider using a FAB(Floating action button) instead.

E.g. the Android Design Support Library offers a FAB implementation.

android-circlebutton

Circle button widget for Android

[Button Example](example/example.gif)

[Download an example apk](example/example.apk)

Gradle dependency build.gradle

repositories {
    mavenCentral()
    mavenLocal()
}

...

dependencies {
    compile 'com.github.markushi:circlebutton:1.1'
}

Example Usage:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <at.markushi.ui.CircleButton
        android:layout_width="64dip"
        android:layout_height="64dip"
        android:src="@drawable/ic_action_tick"
        app:cb_color="#99CC00"
        app:cb_pressedRingWidth="8dip" />

</FrameLayout>