Skip to content

Latest commit

 

History

History
90 lines (65 loc) · 2.28 KB

README.md

File metadata and controls

90 lines (65 loc) · 2.28 KB

Typography

Easy load fonts for Android

Use a delegate for AppCompatActivity for override the default typeface

For load a custom use android:fontFamily with the key passed in the configuration class (TypographyConfig)

Initialization of the global configuration

Initialization in the Application class

public class App extends Application {

    @Override
    public void onCreate() {
        super.onCreate();

        new TypographyConfig.Builder(this)
                .defaultFont("regular")
                .addFont("regular", "fonts/Roboto-Regular.ttf")
                .addFont("black", "fonts/Roboto-Black.ttf")
                .addFont("light", "fonts/Roboto-Light.ttf")
                .addFont("medium", "fonts/Roboto-Medium.ttf")
                .addFont("thin", "fonts/Roboto-Thin.ttf")
                .buildSingleton();
    }
}

Used a customs fonts in activity

public class MainActivity extends AppCompatActivity {

    @Override
    public AppCompatDelegate getDelegate() {
        return new TypographyAppCompatDelegate(this, super.getDelegate());
    }
    
    ...
    
}

Use custom font in layout

<!-- load thin font -->
<TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/hello_world"
            android:fontFamily="thin"/>
      
<!-- load medium font -->      
<TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/hello_world"
            android:fontFamily="medium"/>

Download via Gradle:

dependencies {
  compile 'com.github.mslimani:typography:1.0.0'
}

License

Copyright 2016 Mehdi Slimani

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.