While testing an application that uses Helvetica Neue as its primary font on Android 4.0 I have found that there is an inconsistency in typeface rendering compared to multiple d
Add font type ttf file to asset folder, then add below code
Typeface tf = Typeface.createFromAsset(getBaseContext().getAssets(), "Helvetica.ttf");
then add tf object to text view as below
textobjext.setTypeface(tf, Typeface.BOLD);