MultiFontViewKotlin
MultiFontViewKotlin
library can be used to select custom fonts for the view dynamically in your XML. The library loads the custom fonts using a font cache.
Views Available
MultiFontTextViewKotlin
MultiFontEditTextKotlin
MultiFontButtonKotlin
MultiFontSwitchKotlin
MultiFontRadioButtonKotlin
MultiFontCheckBoxKotlin
MultiFontTextClockKotlin[API 17+]
How to Use
STEP 1 - Declare dependencies in your project
To add any MultiFontViewKotlin
to your project, first make sure in root build.gradle
you have specified the following repository:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
To Use MultiFont Textview, add the below dependency
dependencies {
compile 'com.github.shashkiranr.MultiFontViewKotlin-Android:multifonttextviewkotlin:1.0'
}
To Use MultiFont Button, add the below dependency
dependencies {
compile 'com.github.shashkiranr.MultiFontViewKotlin-Android:multifontbuttonkotlin:1.0'
}
To Use MultiFont EditText, add the below dependency
dependencies {
compile 'com.github.shashkiranr.MultiFontViewKotlin-Android:multifontedittextkotlin:1.0'
}
To Use MultiFont Switch, add the below dependency
dependencies {
compile 'com.github.shashkiranr.MultiFontViewKotlin-Android:multifontswitchkotlin:1.0'
}
To Use MultiFont CheckBox, add the below dependency
dependencies {
compile 'com.github.shashkiranr.MultiFontViewKotlin-Android:multifontcheckboxkotlin:1.0'
}
To Use MultiFont RadioButton, add the below dependency
dependencies {
compile 'com.github.shashkiranr.MultiFontViewKotlin-Android:multifontradiobuttonkotlin:1.0'
}
To Use MultiFont TextClock, add the below dependency
dependencies {
compile 'com.github.shashkiranr.MultiFontViewKotlin-Android:multifonttextclockkotlin:1.0'
}
STEP 2 - copy the fonts to assets folder under fonts subfolder
STEP 3 - create an attrs.xml file (if already present then add) a declare-stylable and attribute name typeface_from_list which contains the custom fonts in form of enums - as shown below
For MultiFontTextView
the declare-styleable should be named MultiFontTextViewKotlin
and attribute should be named typeface_from_list
<attr name="typeface_from_list">
<enum name="BLESSED.otf" value="0" />
<enum name="Respective.ttf" value="1" />
<enum name="Respective_Slanted.ttf" value="2" />
<enum name="Shine.ttf" value="3" />
<enum name="SweetSensations.ttf" value="4" />
</attr>
<declare-styleable name="MultiFontTextViewKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
For MultiFontButton
the declare-styleable should be named MultiFontButtonKotlin
and attribute should be named typeface_from_list
<attr name="typeface_from_list">
<enum name="BLESSED.otf" value="0" />
<enum name="Respective.ttf" value="1" />
<enum name="Respective_Slanted.ttf" value="2" />
<enum name="Shine.ttf" value="3" />
<enum name="SweetSensations.ttf" value="4" />
</attr>
<declare-styleable name="MultiFontButtonKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
For MultiFontEditText
the declare-styleable should be named MultiFontEditTextKotlin
and attribute should be named typeface_from_list
<attr name="typeface_from_list">
<enum name="BLESSED.otf" value="0" />
<enum name="Respective.ttf" value="1" />
<enum name="Respective_Slanted.ttf" value="2" />
<enum name="Shine.ttf" value="3" />
<enum name="SweetSensations.ttf" value="4" />
</attr>
<declare-styleable name="MultiFontEditTextKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
For MultiFontSwitch
the declare-styleable should be named MultiFontSwitchKotlin
and attribute should be named typeface_from_list
<attr name="typeface_from_list">
<enum name="BLESSED.otf" value="0" />
<enum name="Respective.ttf" value="1" />
<enum name="Respective_Slanted.ttf" value="2" />
<enum name="Shine.ttf" value="3" />
<enum name="SweetSensations.ttf" value="4" />
</attr>
<declare-styleable name="MultiFontSwitchKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
For MultiFontRadioButton
the declare-styleable should be named MultiFontRadioButtonKotlin
and attribute should be named typeface_from_list
<attr name="typeface_from_list">
<enum name="BLESSED.otf" value="0" />
<enum name="Respective.ttf" value="1" />
<enum name="Respective_Slanted.ttf" value="2" />
<enum name="Shine.ttf" value="3" />
<enum name="SweetSensations.ttf" value="4" />
</attr>
<declare-styleable name="MultiFontRadioButtonKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
For MultiFontCheckBox
the declare-styleable should be named MultiFontCheckBoxKotlin
and attribute should be named typeface_from_list
<attr name="typeface_from_list">
<enum name="BLESSED.otf" value="0" />
<enum name="Respective.ttf" value="1" />
<enum name="Respective_Slanted.ttf" value="2" />
<enum name="Shine.ttf" value="3" />
<enum name="SweetSensations.ttf" value="4" />
</attr>
<declare-styleable name="MultiFontCheckBoxKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
For MultiFontTextClock
the declare-styleable should be named MultiFontTextClockKotlin
and attribute should be named typeface_from_list
<attr name="typeface_from_list">
<enum name="BLESSED.otf" value="0" />
<enum name="Respective.ttf" value="1" />
<enum name="Respective_Slanted.ttf" value="2" />
<enum name="Shine.ttf" value="3" />
<enum name="SweetSensations.ttf" value="4" />
</attr>
<declare-styleable name="MultiFontTextClockKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
If you are using all the views
or any two views
just one typeface_from_list is enough as shown below
<attr name="typeface_from_list">
<enum name="BLESSED.otf" value="0" />
<enum name="Respective.ttf" value="1" />
<enum name="Respective_Slanted.ttf" value="2" />
<enum name="Shine.ttf" value="3" />
<enum name="SweetSensations.ttf" value="4" />
</attr>
<declare-styleable name="MultiFontTextViewKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
<declare-styleable name="MultiFontButtonKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
<declare-styleable name="MultiFontEditTextKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
<declare-styleable name="MultiFontSwitchKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
<declare-styleable name="MultiFontRadioButtonKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
<declare-styleable name="MultiFontCheckBoxKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
<declare-styleable name="MultiFontTextClockKotlin">
<attr name="typeface_from_list" />
</declare-styleable>
STEP 4 - create a string array with name customFonts
and declare all the name of the custom fonts with file extension in the same order
as typeface_from_list
enum- as shown below
<string-array name="customFonts">
<item>BLESSED.otf</item>
<item>Respective.ttf</item>
<item>Respective_Slanted.ttf</item>
<item>Shine.ttf</item>
<item>SweetSensations.ttf</item>
</string-array>
STEP 5 - Add the custom view in your layout. The property typeface_from_list
should apper and the font names should display as values as shown below
Thats it !!
License
MIT License
Copyright (c) 2017 shashkiranr
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.