How would I extend TextView to allow the drawing of text with a gradient effect?

link|improve this question

feedback

6 Answers

 TextView secondTextView = new TextView(this);
    Shader textShader=new LinearGradient(0, 0, 0, 20,
            new int[]{Color.GREEN,Color.BLUE},
            new float[]{0, 1}, TileMode.CLAMP);
    secondTextView.getPaint().setShader(textShader);
link|improve this answer
1  
+1 for making it simpler and efficient. – Andro Selva Jul 8 '11 at 10:12
Thanks for a very simple solution :) – Markus K Aug 12 '11 at 7:44
On my ICS device, this doesn't seem to work -- it is completely transparent. Anyone else seeing the same thing? The view is not hardware accelerated. – Steve Prentice Mar 1 at 1:14
feedback
up vote 11 down vote accepted

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.

Shader textShader=new LinearGradient(0, 0, 0, 20,
    new int[]{bottom,top},
    new float[]{0, 1}, TileMode.CLAMP);//Assumes bottom and top are colors defined above
textPaint.setTextSize(textSize);
textPaint.setShader(textShader);
BoringLayout.Metrics boringMetrics=BoringLayout.isBoring(text, textPaint);
boringLayout=new BoringLayout(text, textPaint, 0, Layout.Alignment.ALIGN_CENTER,
            0.0f, 0.0f, boringMetrics, false);

We then override onMeasure and onDraw:

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
    setMeasuredDimension((int) textPaint.measureText(text), (int) textPaint.getFontSpacing());
}

@Override
protected void onDraw(Canvas canvas){
    super.onDraw(canvas);
    boringLayout.draw(canvas);
}

Our implementation of onDraw is at this point quite lazy (it completely ignores the measurement specs!, but so long as you guarantee that the view is given sufficent space, it should work okay.

Alternatively, it would be possible to inherit from a Canvas and override the onPaint method. If this is done, then unfortunately the anchor for text being drawn will always be on the bottom so we have to add -textPaint.getFontMetricsInt().ascent() to our y coordinate.

link|improve this answer
Hi, can you please add some more code to this answer? specifically, the rest of the BoringLayout extending layout class. thanks! – ekatz May 10 '11 at 18:39
I link to BoringLayout that should be included in the SDK – Casebash May 10 '11 at 21:25
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.

https://github.com/koush/Widgets

link|improve this answer
feedback

A simple but somewhat limited solution would be to use these attributes:

android:fadingEdge="horizontal"
android:scrollHorizontally="true"

I have used it on textfields where I want them to fade out if they get too long.

link|improve this answer
That is a nice hack. I don't suppose that you can make that work vertically? There isn't any android:scrollVertically property as far as I can see – Casebash Apr 21 '10 at 23:49
Sorry, I dont know how to do that :( – sandis Apr 22 '10 at 6:46
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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