Back to project page OneSearch.
The source code is released under:
MIT License
If you think the Android project OneSearch 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 chrisjluc.funsearch.ui.components; /* www .ja va2 s . c om*/ import android.content.Context; import android.graphics.Color; import android.graphics.Typeface; import android.util.AttributeSet; import android.widget.Button; import chrisjluc.funsearch.R; public class GameButton extends Button { private static Typeface typeface; public GameButton(Context context) { super(context); setTypeFace(context); setAppearance(); } public GameButton(Context context, AttributeSet attrs) { super(context, attrs); setTypeFace(context); setAppearance(); } public GameButton(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); setTypeFace(context); setAppearance(); } private void setAppearance(){ this.setBackgroundResource(R.drawable.curvedbutton); } private void setTypeFace(Context context) { if(typeface == null) typeface = Typeface.createFromAsset(context.getAssets(), "fonts/gothic.ttf"); this.setTypeface(typeface); this.setTextColor(Color.WHITE); } }