Ink

A light-weight, customizable view for capturing a signature or drawing in an Android app.

Лицензия

Лицензия

Группа

Группа

com.simplify
Идентификатор

Идентификатор

ink
Последняя версия

Последняя версия

1.0.0
Дата

Дата

Тип

Тип

aar
Описание

Описание

Ink
A light-weight, customizable view for capturing a signature or drawing in an Android app.
Ссылка на сайт

Ссылка на сайт

https://github.com/simplifycom/ink-android
Система контроля версий

Система контроля версий

https://github.com/simplifycom/ink-android

Скачать ink

Имя Файла Размер
ink-1.0.0.pom
ink-1.0.0.aar 10 KB
ink-1.0.0-sources.jar 5 KB
ink-1.0.0-javadoc.jar 46 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.simplify/ink/ -->
<dependency>
    <groupId>com.simplify</groupId>
    <artifactId>ink</artifactId>
    <version>1.0.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.simplify/ink/
implementation 'com.simplify:ink:1.0.0'
// https://jarcasting.com/artifacts/com.simplify/ink/
implementation ("com.simplify:ink:1.0.0")
'com.simplify:ink:aar:1.0.0'
<dependency org="com.simplify" name="ink" rev="1.0.0">
  <artifact name="ink" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.simplify', module='ink', version='1.0.0')
)
libraryDependencies += "com.simplify" % "ink" % "1.0.0"
[com.simplify/ink "1.0.0"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Ink Build Status

A light-weight, customizable view for capturing a signature or drawing in an Android app.

screenshot

Import the Dependency Download

To import the Android SDK, include it as a dependency in your build.gradle file

compile 'com.simplify:ink:X.X.X'

Usage

To use the library, you must include the InkView class in your project. A simple solution is to reference it directly into your layout:

<com.simplify.ink.InkView
    android:id="@+id/ink"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

Then, within your code, fetch the view and initialize it:

InkView ink = (InkView) findViewById(R.id.ink);
    ink.setColor(getResources().getColor(android.R.color.black));
    ink.setMinStrokeWidth(1.5f);
    ink.setMaxStrokeWidth(6f);

Features can be toggled on and off by using the custom attributes on the xml tag:

// add this to the root element in your layout
xmlns:app="http://schemas.android.com/apk/res-auto"

<com.simplify.ink.InkView
    android:id="@+id/ink"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:inkFlags="interpolation|responsiveWeight"/>

or by setting the flags manually in code:

InkView ink = (InkView) findViewById(R.id.ink);
ink.setFlags(InkView.FLAG_INTERPOLATION | InkView.FLAG_RESPONSIVE_WEIGHT);

By default, interpolation and responsive weight flags are on.

You can capture the drawing in the form of a bitmap by calling:

Bitmap drawing = ink.getBitmap();

or you can also include a background color:

Bitmap drawing = ink.getBitmap(getResources().getColor(R.color.my_background_color));
com.simplify

Simplify Commerce

Версии библиотеки

Версия
1.0.0
0.2.3
0.2.2
0.2.1
0.2
0.1