Back to project page android-textview-custom-fonts.
The source code is released under:
Copyright (c) 2014, Leo Kuznetsov All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...
If you think the Android project android-textview-custom-fonts listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package custom.fonts; /*ww w .j a v a 2 s . co m*/ import android.app.*; import android.os.*; import android.util.*; public class CustomFontFragment extends Fragment { public void onInflate(Activity a, AttributeSet attrs, Bundle savedInstanceState) { CustomFontFactory.attach(a); super.onInflate(a, attrs, savedInstanceState); } public void onAttach(Activity a) { CustomFontFactory.attach(a); super.onAttach(a); } }