TypefaceHelper alternatives and similar packages
Based on the "Font" category.
Alternatively, view TypefaceHelper alternatives based on common mentions on social networks and blogs.
-
android-typeface-helper
Typeface helper for Android -
fontbinding
A full example of custom fonts in XML using data binding and including font caching. -
Tehreer-Android
Standalone text engine for Android aimed to be free from platform limitations -
Single Shot Font Change
Custom font library for android | Library to change/add font of Entire Android Application at once without wasting your time - TextViews, EditText, Buttons, Views etc.,
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of TypefaceHelper or a related project?
README
TypefaceHelper
Helper object for injecting typeface into various text views of android.
Overview
We can use various custom typefaces asset for any text views(like TextView, Button, RadioButton, EditText, etc.), but there's no way to set the typeface as a styled theme to apply the typeface for overall screens in the app.
This library helps to do it in easy way :)
And there's also a serious bug that creating typeface from asset resource will cause memory leak (See this link for more details), this library will take care about this problem as well.
How to use
First, put your typeface into asset
directory.
In your application class, take care about the helper object lifecycle.
public class MyApp extends Application {
@Override
public void onCreate() {
super.onCreate();
TypefaceHelper.initialize(this);
}
@Override
public void onTerminate() {
TypefaceHelper.destroy();
super.onTerminate();
}
}
And in your activity, if you would like to set your typeface to a text view,
public class MyActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView hello = (TextView) findViewById(R.id.hello_world);
TypefaceHelper.getInstance().setTypeface(hello, "font/font_file.ttf");
}
}
You can also set your typeface for all text views that belong to a specific view group just like this.
public class MyActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
LinearLayout container = (LinearLayout) findViewById(R.id.text_container);
TypefaceHelper.getInstance().setTypeface(container, "font/font_file.ttf");
}
}
If you want to apply the typeface for all text views under the activity layout,
public class MyActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(TypefaceHelper.getInstance().setTypeface(this, R.layout.activity_main, "font/font_file.ttf"));
}
}
Nice and easy!
You can apply the typeface to your whole window like this.
public class MyActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_activity_main);
TypefaceHelper.getInstance().setTypeface(this, "font/font_file.ttf");
}
}
And... you can also pass the font name as a string resource id:
public class MyActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_activity_main);
TypefaceHelper.getInstance().setTypeface(this, R.string.font_primary);
}
}
Download
Gradle:
compile 'com.drivemode:TypefaceHelper:[email protected]'
License
Copyright (C) 2014 Drivemode, Inc. All rights reserved.
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.
And the sample app uses the following font under OFL.
*Note that all licence references and agreements mentioned in the TypefaceHelper README section above
are relevant to that project's source code only.