Back to project page android-gskbyte-utils.
The source code is released under:
GNU Lesser General Public License
If you think the Android project android-gskbyte-utils 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 org.gskbyte.view; /*from w w w.j a v a 2 s . c o m*/ import android.content.Context; import android.util.AttributeSet; import android.widget.EditText; import org.gskbyte.R; public class FontableEditText extends EditText { public FontableEditText(Context context) { super(context); } public FontableEditText(Context context, AttributeSet attrs) { super(context, attrs); FontUtil.setCustomFont(this,context,attrs, R.styleable.org_gskbyte_view_FontableEditText, R.styleable.org_gskbyte_view_FontableEditText_font); } public FontableEditText(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); FontUtil.setCustomFont(this,context,attrs, R.styleable.org_gskbyte_view_FontableEditText, R.styleable.org_gskbyte_view_FontableEditText_font); } }