IEBubbleView

General

Category
Free
Tag
Views
License
MIT License
Min SDK
16 (Android 4.1 Jelly Bean)
Registered
Feb 20, 2017
Favorites
5
Link
https://github.com/ddB0515/IEBubbleView
See also
DrawView
IndexBar
FabricView
Dragueur
DraggableView

Additional

Language
Java
Version
1.0.2 (Mar 7, 2017)
Created
Feb 18, 2017
Updated
Mar 7, 2017 (Retired)
Owner
Dario Budimir (ddB0515)
Contributor
Dario Budimir (ddB0515)
1
Activity
Badge
Generate
Download
Source code

IEBubbleView

Custom Android Bubbleview with curved Bezier Paths as I didn't find any similar that will fit my need so I have created one. Hope Someone will find it useful :)

##Screenshot

##Usage

<com.iebubble.IEBubbleView
        android:layout_width="150dp"
        android:layout_height="100dp"
        android:id="@+id/view3"
        app:ieb_distance="30dp"
        app:ieb_orientation="right"
        app:ieb_position="bottom_right"
        app:ieb_radius="15dp"
        app:ieb_type="normal"
        app:ieb_color="@android:color/white"
        android:layout_below="@+id/imageView"
        android:layout_toEndOf="@+id/imageView" />

###Details: app:ieb_color color of IEBubbleView

app:ieb_position posititon top_left top_right bottom_left bottom_right

app:ieb_orientation orientation left right

app:ieb_type there are 2 types small normal

app:ieb_radius radius for curved corners

app:ieb_distance tail distance from left/right

app:ieb_marginLeft custom margins

app:ieb_marginTop custom margins

app:ieb_marginRight custom margins

app:ieb_marginBottom custom margins

##Import to your project ###Gradle

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

dependencies {
    compile 'com.github.InvalidExcepti0n:IEBubbleView:1.0.2'
}