Custom ttf fonts are not showing properly in TextView on Android 4.4 KitKat
I have some text which has some bolded parts. Until KitKat this strategy ( as mentioned in this post ) worked perfectly well My strings resources file: <string name="multi_style_text">NON-BOLD TEXT \n<b>BOLD</b></string> My application code in fragment: txtView.setTypeface(FontUtils.getOstrichRegular(this.getActivity())); ... public static Typeface getOstrichRegular(Context context) { return Typeface.createFromAsset(context.getAssets(), "fonts/ostrich_regular.ttf"); } Currently (in KitKat), the bolded part is not shown in the custom font, the non-bolded part is shown in the custom font. In