Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.munzap:drawview:v1.3.1-alpha.10'
}
dependencies {
implementation("com.github.munzap:drawview:v1.3.1-alpha.10")
}
<dependency>
<groupId>com.github.munzap</groupId>
<artifactId>drawview</artifactId>
<version>v1.3.1-alpha.10</version>
</dependency>
libraryDependencies += "com.github.munzap" % "drawview" % "v1.3.1-alpha.10"
:dependencies [[com.github.munzap/drawview "v1.3.1-alpha.10"]]
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.
View example APK
With Gradle:
compile 'com.byox.drawview:drawview:1.3.1'
or Maven:
<dependency>
<groupId>com.byox.drawview</groupId>
<artifactId>drawview</artifactId>
<version>1.3.1</version>
<type>pom</type>
</dependency>
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" />
Please visit Wiki
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. Click here to donate
Please feel free to contact me if you like to appear in this section.
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.