This is in an extension of TextView. getTextSize and setTextSize are not overridden, I do not extend those methods. Programming in 1.6, API level 4.

The loop in this code causes size to be multiplied by 1.5 every time it iterates, e.g. if size initially reads 200 from getTextSize, then setTextSize(size) is called, getTextSize called again reads back 300.

    public void shrinkTest() {
    float size = this.getTextSize(); 
    while (size > 8) {
        this.setTextSize(size);
        size = this.getTextSize();
    }
}

Por que?

link|improve this question

feedback

2 Answers

up vote 17 down vote accepted

Heh, mixed units problem. Seems a little counterintuitive, but it's an easy fix. The default method setTextSize(float) assumes you're inputting sp units (scaled pixels), while the getTextSize() method returns an exact pixel size.

You can fix this by using the alternate setTextSize(TypedValue, float), like so:

this.setTextSize(TypedValue.COMPLEX_UNIT_PX, size);

This will make sure you're working with the same units.

link|improve this answer
feedback

setTextSize() and getTextSize() work with different units. The parameter to set() is density-independent "scaled pixels", whereas get() returns plain old pixels.

link|improve this answer
1  
Beaten to the punch. :P – kcoppock Feb 17 '11 at 17:34
2  
Hah, thought that only ever happened to me! Have an upvote for your slightly more useful answer... – Reuben Scratton Feb 17 '11 at 17:39
feedback

Your Answer

 
or
required, but never shown

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