I am using typeface class to set the font Monotype corsiva for an edittext
EditText ed=(EditText) findViewById(R.id.editexthead);
String path="C:\\MTCORSVA.TTF";
Typeface tf=Typeface.createFromFile(path);
ed.setTypeface(tf);
The program force closes with an exception Is there any other way to set the path..
And when i try to manually store a .TTF on sdcard it doesn't show up the file... any reason for that. I don't want to use assets folder to set the font ... anybody with the solution .. ?? Please HELP