chuross / asciiartview

Drawing for AsciiArt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AsciiArtView

This library provide to draw AsciiArt.

Download

Gradle

  1. add JitPack repository to your project root build.gradle.
repositories {
    maven { url "https://jitpack.io" }
}
  1. add the dependency
dependencies {
    compile 'com.github.chuross:asciiartview:x.x.x
}

Usage

monafont into assets directory

This library depends monafont.

http://monafont.sourceforge.net/

Layout XML

<com.github.chuross.asciiartview.AsciiArtView
    android:id="@+id/asciiart"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

Code

val yourAsciiArtData: String = ... // from assets or network or...

val asciiArtView: AsciiArtView = findViewById(R.id.asciiart)
asciiArtView.setAsciiArt(yourAsciiArtData)
asciiArtView.setTypeface(Typeface.createFromAsset(assets, "mona.ttf"))

XML Attributes

name type description etc
aav_color color
aav_typeface string

License

Copyright 2018 chuross

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

Drawing for AsciiArt

License:Apache License 2.0


Languages

Language:Java 76.2%Language:Kotlin 23.8%