Why don't you just install it in a ur java file, as simple as adding this code and running it from the ur resource.
Button mail = (Button) findViewById(R.urid);
Typeface font = Typeface.createFromAsset(getAssets(), "fonts/RobotoCondensed-Italic.ttf");
mail.setTypeface(font);
Remember to add the ttf file to the ur resource.
source
share