I have this code:

Typeface ardarling = Typeface.createFromAsset(getAssets(), "fonts/ARDARLING.ttf");
Button btnBasicCalc = (Button) findViewById(R.id.m_btnBasicCalc);
btnBasicCalc.setTypeface(ardarling);

To change the font on one of the buttons in my layout file, but Eclipse keeps throwing a:

Syntax error on token "ardarling", VariableDeclatorID expected after this token.

on the "setTypeface(ardarling)" bit of the last line, and a:

Syntax error on token(s), misplaced construct(s).

on the period (.) of "btnBasicCalc.setTypeface(ardarling);"

I have no idea why this is not working, and this code is exactly what I have seen in other places to set a custom font...

Here is my list of imports, if it helps:

import android.app.Activity;
import android.content.Intent;
import android.graphics.Typeface;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
link|improve this question
2  
My guess is that it is something higher in the source code, perhaps an extra or missing } or a missing ; – TofuBeer Oct 4 '11 at 21:04
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.