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;