Home

Awesome

MagicViews

Maven Central

Provides a simple way to set custom font in Android application.

ScreenshotsScreenshots

Adding to your project

  1. Add the library as a dependency to your build.gradle
compile 'com.ivankocijan:MagicViews:version@aar'
  1. Specify path to fonts folder in onCreate method of your Application class (See example app).
   public class MyApplication extends Application {
   
        @Override
        public void onCreate() {
            super.onCreate();
            
             MagicViews.setFontFolderPath(this, "fontFolderPath");
        
        }
   
   }
   

Usage from layout

  1. Add your application namespace to the root element in the XML <code>xmlns:app="http://schemas.android.com/apk/res-auto"</code>

  2. Instead of TextView use <code>com.ivankocijan.magicviews.views.MagicTextView</code>

    <com.ivankocijan.magicviews.views.MagicTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:typeFace="cha_chicle.otf"/>

For a complete list of features and how to use them see wiki page.

Supported views

Supported Android versions

Change log

V3.1.0

V3.0.1

See wiki for more info.

You might encounter this issue after updating: /build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml

There are two options to fix that:

Exclude appcompact-v7 from MagicViews library:

    compile('com.ivankocijan:MagicViews:3.1.0@aar') {
        exclude group: 'com.android.support', module: 'appcompat-v7'
    }

or Compile your app with Android SDK 23:

   android {
      compileSdkVersion 23
   }

V3.0

Contributing

Feedback and code contributions are very much welcomed. Just make a pull request with a short description of your changes. By making contributions to this project you give permission for your code to be used under the same license.