Android library to add a touch to draw view to your android application. It can also be used for capturing signatures
Minimum sdk is 15.
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
compile 'com.github.gauravyadav673:HandDraw:v1.02'
<com.raodevs.touchdraw.TouchDrawView
android:id="@+id/canvas"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
You can resize and position this view according to your needs.
<!--Change paint Color-->
app:text_color="#ffffff"
<!--Change stroke size -->
app:text_size="10f"
<!--Change background color-->
app:bg_color="#000000"
<com.raodevs.touchdraw.TouchDrawView
android:id="@+id/canvas"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:text_color="#ffffff"
app:text_size="10f"
app:bg_color="#000000"/>
TouchDrawView touchDrawView; //declaring
//put below line inside the onCreate() method
touchDrawView = (TouchDrawView)findViewById(R.id.canvas); //defining
touchDrawView.setPaintColor(Color.MAGENTA);// for changing paint color
touchDrawView.setBGColor(Color.BLUE);// for changing background color
touchDrawView.setStrokeWidth(20f);// for changing stroke width
///****//
touchDrawView.clear();//for clearing the whole view(can be redone by using redo function)
touchDrawView.undo();//for undoing last stroke
touchDrawView.redo();//for redoing latest changes
///***///
touchDrawView.saveFile(folderName, fileName)//saves the current view in .jpeg format
touchDrawView.getFile()//returns current view in Bitmap format
After adding this to your project you can enjoy your custom handDraw view.
Well, that's not a difficult task. Contributors are most welcomed. You can simpy add comments to the code so others can understand it better, you can report issues or bugs, add any new function you want to add or you can contribute on any of the following topics:-
- Implementing bezier curve for smoother curves.
- Implementing a color picker.
- Adding more to this list