Skip to content

Android view that allows the user to create drawings. Customize settings like color, width or tools. Undo or redo actions. Zoom into DrawView and add a background.

Notifications You must be signed in to change notification settings

ByoxCode/DrawView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

db51f11 · Aug 10, 2019

History

63 Commits
Nov 10, 2016
Mar 26, 2018
Mar 26, 2018
Apr 1, 2017
Nov 29, 2016
Nov 11, 2016
Nov 11, 2016
Nov 11, 2016
Apr 1, 2017
May 4, 2017
Aug 10, 2019
May 4, 2017
Nov 11, 2016
Nov 19, 2016
May 6, 2017
Nov 10, 2016

Repository files navigation

DrawView

drawview

DrawView DrawViewSnapshot Platform Language

Android view that allows the user to create drawings. Draw anything you like in your Android device from simple view.

Customize draw settings like draw color, draw width or draw tools.

Undo or redo actions it is possible with DrawView.

undo redo gif text tool gif save bitmap gif zoom gif camera gif

View example APK

Usage

With Gradle:

  implementation 'com.byox.drawview:drawview:X.X.X'

or Maven:

<dependency>
  <groupId>com.byox.drawview</groupId>
  <artifactId>drawview</artifactId>
  <version>X.X.X</version>
  <type>pom</type>
</dependency>

Where X.X.X is the current version of DrawView

Snapshot

Import from:

  maven { url "https://raw.githubusercontent.com/ByoxCode/DrawView/snapshot/aar/snapshots/" }

With Gradle:

  implementation 'com.byox.drawview:drawview:X.X.X-SNAPSHOT'

or Maven:

<dependency>
  <groupId>com.byox.drawview</groupId>
  <artifactId>drawview</artifactId>
  <version>X.X.X-SNAPSHOT</version>
  <type>pom</type>
</dependency>

Where X.X.X is the current version of DrawView Snapshot

How to use

Add DrawView to your layout

  <com.byox.drawview.views.DrawView
        android:id="@+id/draw_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:dv_draw_alpha="255"
        app:dv_draw_anti_alias="true"
        app:dv_draw_color="@color/colorAccent"
        app:dv_draw_corners="round"
        app:dv_draw_dither="true"
        app:dv_draw_enable_zoom="true"
        app:dv_draw_font_family="default_font"
        app:dv_draw_font_size="12"
        app:dv_draw_max_zoom_factor="8"
        app:dv_draw_mode="draw"
        app:dv_draw_style="stroke"
        app:dv_draw_tool="pen"
        app:dv_draw_width="4"
        app:dv_draw_zoomregion_maxscale="5"
        app:dv_draw_zoomregion_minscale="2"
        app:dv_draw_zoomregion_scale="4" />

Attributes

Please visit Wiki

Donate

If this library is useful for you, and you like it, and if want to contribute for develop more libraries, you can buy me a beer. PayPal

Apps that uses DrawView

Please feel free to contact me if you like to appear in this section.

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Android view that allows the user to create drawings. Customize settings like color, width or tools. Undo or redo actions. Zoom into DrawView and add a background.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages