Android typefont not found

386 Views Asked by At

i'm writing this post because I have a problem with android studio on ubuntu mate 17.04. The problem is that android studio doesn't found a custom font. I have add this font on:

-main
---assets
------fonts
------------myfont.ttf

but when i do this:

Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/FUTRFW.TTF");

classibutton.setTypeface(typeface);

i have an exception that show myfont is not found. I attach the structure of my project:

app structure

how can i solve this?? Thanks all for the help

3

There are 3 best solutions below

1
On

try this your have to bind your classibutton than your can set Custom fonts to your and also don't write .ttf in capital letters

sample code

classibutton=(Button)findViewById(R.id.button1);
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/FUTRFW.ttf");
classibutton.setTypeface(typeface);
1
On

try this,I think .ttf should not be capital

classibutton = (Button)findViewById(R.id.button1);

Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/FUTRFW.ttf");

classibutton.setTypeface(typeface);
8
On

Font file name should be in small letters. So First of all you should rename your font file as "futrfw.ttf" and then

classibutton=(Button)findViewById(R.id.button1);
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/futrfw.ttf");
classibutton.setTypeface(typeface);

And please be sure that your folder name should be "fonts" (as you are using "fonts/futrfw.ttf" here) and this folder must be inside the "assets" folder which is inside "main" folder.