FingerSignView

FingerSignView is a simple library that lets you finger, or draw lines, smoothly with your finger into a View and save it as a file or bitmap.

FingerSignView

Install

Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:

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

Step 2. Add the dependency

dependencies {
  implementation 'com.github.AgnaldoNP:FingerSignView:1.0'
}

Usage

Sample of usage

<pereira.agnaldo.fingersignlibrary.FingerSignView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:lineColor="#344374"
            app:strokeWidth="4dp"
            app:velocityFilterWeight="4"
    />

Options

Property Values Default
lineColor color value #000
strokeWidth dimension value 4dp
velocityFilterWeight integer value 4

GitHub