How would I extend TextView to allow the drawing of text with a gradient effect?
| ||||
|
feedback
|
| |||||||||
feedback
|
|
It doesn't appear possible to extend TextView to draw text with a gradient. It is, however, possible to achieve this effect by creating a canvas and drawing on it. First we need to declare our custom UI element. In the initiation we need to create a subclass of Layout. In this case, we will use BoringLayout which only supports text with a single line.
We then override
Our implementation of Alternatively, it would be possible to inherit from a | |||||
feedback
|
|
I've rolled up a library that encompasses both of these methods. You can create GradientTextView in XML or just use GradientTextView.setGradient(TextView textView...) to do it on a regular TextView object. | |||
|
feedback
|
|
A simple but somewhat limited solution would be to use these attributes:
I have used it on textfields where I want them to fade out if they get too long. | |||||
feedback
|
|
May be this example help you http://android-codes-examples.blogspot.com/2011/07/design-linearlayout-or-textview-and-any.html | |||
|
feedback
|
|
Here is an example for linearlayout, you can use this example for textview too, and in the source code there wont be gradient coding, you get the source code and add the code from that site itself - http://android-codes-examples.blogspot.com/2011/07/design-linearlayout-or-textview-and-any.html | |||
|
feedback
|