Android Open Source - OneSearch Game Text View From Project Back to project page OneSearch .
License 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.
Java Source Code package chrisjluc.funsearch.ui.components;
/ * f r o m w w w . j a v a 2 s . c o m * /
import android.content.Context;
import android.graphics.Typeface;
import android.util.AttributeSet;
import android.widget.TextView;
public class GameTextView extends TextView {
private static Typeface typeface;
public GameTextView(Context context, AttributeSet attrs) {
super (context, attrs);
setTypeFace(context);
}
public GameTextView(Context context, AttributeSet attrs, int defStyle) {
super (context, attrs, defStyle);
setTypeFace(context);
}
public GameTextView(Context context) {
super (context);
setTypeFace(context);
}
private void setTypeFace(Context context) {
if (typeface == null)
typeface = Typeface.createFromAsset(context.getAssets(), "fonts/gothic.ttf" );
this.setTypeface(typeface);
}
}
Java Source Code List chrisjluc.funsearch.ApplicationTest.java chrisjluc.funsearch.WordSearchManager.java chrisjluc.funsearch.adapters.WordSearchGridAdapter.java chrisjluc.funsearch.adapters.WordSearchPagerAdapter.java chrisjluc.funsearch.base.BaseActivity.java chrisjluc.funsearch.models.GameDifficulty.java chrisjluc.funsearch.models.GameMode.java chrisjluc.funsearch.models.GameType.java chrisjluc.funsearch.ui.MenuActivity.java chrisjluc.funsearch.ui.ResultsActivity.java chrisjluc.funsearch.ui.components.GameButton.java chrisjluc.funsearch.ui.components.GameTextView.java chrisjluc.funsearch.ui.gameplay.PauseDialogFragment.java chrisjluc.funsearch.ui.gameplay.WordSearchActivity.java chrisjluc.funsearch.ui.gameplay.WordSearchFragment.java chrisjluc.funsearch.ui.gameplay.WordSearchGridView.java chrisjluc.funsearch.ui.gameplay.WordSearchViewPager.java chrisjluc.funsearch.wordSearchGenerator.generators.DistinctRandomGenerator.java chrisjluc.funsearch.wordSearchGenerator.generators.WordSearchGenerator.java chrisjluc.funsearch.wordSearchGenerator.models.Node.java chrisjluc.funsearch.wordSearchGenerator.models.Point.java chrisjluc.funsearch.wordSearchGenerator.models.PossibleInstance.java