Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

the issue I face seems to have no solution and to be downright impossible to rectify, but I thought to ask here just in case I am missing something.

I need to display some text in an android widget using a non-system, non-standard font from assets folder.

Unfortunately, android does not allow extended view definitions in home screen widgets. Nor I can invoke a corresponding API method (setTypeface) from within the widget.

Does anyone know if there's any other alternative way to accomplish this? (It seems quite natural to be able to customise text view appearance not only in the app but in widgets too, but it turns out to be impossible).

I'd appreciate any help on this.

Thank you...

share|improve this question

1 Answer

up vote 1 down vote accepted

Have you seen this link yet?

What is needed is to render the font onto a canvas, and then pass it on to a bitmap and assign that to an imageview.

How to use a custom typeface in a widget?

By the way, you've asked 18 questions and have not accepted a single answer. I suggest you start accepting some or people will be less inclined to help you.

share|improve this answer
this is probably the way to go. Thanks for the idea. Btw, where do I click to accept an answer, I didn't know about that? Is it that tick mark to the left of the answer? – Nar Gar Oct 22 '12 at 22:41
Yep. Looks like you figured it out, so thanks! – Michael Oct 22 '12 at 23:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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