I'm trying to make my own subclass of TextView called Fancy_Text_View. It will basically have fancy text.
I want to override setText in order to adjust the width/height according to the new text. However, I noticed this: public *final* void setText (CharSequence text) Since it is "final", it cannot be overridden, right? Can someone help me understand why it is "final"? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

