justokay / FontAwesomeIcon

Display fontawesome in image view.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FontAwesomeIcon

The main purpuse of the library is to provide easy way to show free awesome font glyph as icon for image view. https://fontawesome.com/cheatsheet/free

API

Usage

Add it in your root build.gradle at the end of repositories:

allprojects {
    repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Add the dependency to your module build.gradle.

dependencies {
    ...
    implementation 'com.github.justokay.FontAwesomeIcon:font-awesome-icon:1.0.1'
    // optiaonal if you want to use via Glide
    implementation 'com.github.justokay.FontAwesomeIcon:font-awesome-glide:1.0.1'
}

sample

val mode: AwesomeFont = AwesomeFontFactory.getFont(context, "android")
imageView.setImageDrawable(FontAwesomeDrawable(model))

example

Optional: if you want to set image via Glide you you have to register ModelLoaderFactory in your AppGlideModule

@GlideModule
class GlideModule : AppGlideModule() {

    override fun registerComponents(context: Context, glide: Glide, registry: Registry) {
        super.registerComponents(context, glide, registry)
        // register ModelLoaderFactory for awesome font
	    registry.prepend(AwesomeFont::class.java, Drawable::class.java, AwesomeFontModelLoaderFactory())
    }
}

after that Glide will start to work with AwesomeFont calss

GlideApp.with(this)
    .load(AwesomeFontFactory.getFont(context, "google"))
    .into(imageView)

Developed By

Yurii Misiats (Justokay) - yuri.misyac@gmail.com

License

Copyright 2020 Justokay

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

Display fontawesome in image view.

License:Apache License 2.0


Languages

Language:Kotlin 100.0%