I'd like to change the font in textview which is in dialog:

dialog = new Dialog(MyActivity.this);
dialog.setContentView(R.layout.my_dialog);
dialog.setCancelable(true);
((TextView)findViewById(R.id.dialog_box_title_text)).setTypeface(Typeface.createFromAsset(getAssets(), "font.ttf"));

But every time I get the runtime exception:

E/AndroidRuntime(4475): java.lang.IllegalStateException: Could not execute method of the activity

Do you have any idea what is wrong? Because normally it works fine. Problem is only when try to change the font in dialog.

link|improve this question

are you using correct path..for font.ttf – RajaReddy P Nov 21 '11 at 11:41
feedback

1 Answer

up vote 4 down vote accepted

Try this, and let me know what happen.

((TextView)dialog.findViewById(R.id.dialog_box_title_text)).setTypeface(Typeface.createFromAsset(getAssets(), "font.ttf"));
link|improve this answer
Thank you sooo much :) You have saved a few hours of my life :) – obrien Nov 21 '11 at 11:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.