Android – Using Custom Font I applied a custom font to a TextView, but it doesn’t seems to change the typeface. Here is my code: Typeface myTypeface = Typeface.createFromAsset(getAssets(), "fonts/myFont.ttf"); TextView myTextView = (TextView)findViewById(R.id.myTextView);... May 20, 2022 0 Comments