i use this code to change fonts of textview on my app
Typeface tf = Typeface.createFromAsset(getAssets(),"fonts/Roboto-Bold.ttf");
tvDesc.setTypeface(tf);
but the problem is, this only works on nexus devices, when i install my app on a samsung, it uses it's own font.
Thanks