I've Read a lot of articles and stack Questions for over 4 hours, when i use this method to define a custom font i don't get any error but the font doesn't change?
My mainactivity.java is listed below
public class MyActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
TextView textView=(TextView)findViewById(R.id.myid);
Typeface typeface=Typeface.createFromAsset(getAssets(),"assets/fonts/Face Your Fears.ttf");
textView.setTypeface(typeface,Typeface.BOLD);
}