I cannot figure this one out, but I cannot seem to get android to ever cooperate with simple math. I have created a ZoomControls that changes text size of a TextView. Seems simple. I increase the font size no problem. Subtracting just adds it for some weird reason.

zoom.setOnZoomOutClickListener(new View.OnClickListener() {
    public void onClick(View v) {
       float val = songtext.getTextSize();
       float test = (val - 1);
       songtext.setTextSize(test);
    }
});

Judging by this simple code, the font size should be subtracted by 1 everytime the button is pressed. Instead it increases by 1. ??? I am ripping my hair out.

link|improve this question

0% accept rate
What's the text size's value? – Dave Newton Dec 27 '11 at 0:12
2  
Also, consider improving your accept rate; it's not just a warm fuzzy for the answerer, it also helps future visitors with similar issues. – Dave Newton Dec 27 '11 at 0:14
1  
Did you try to print values before and after subtraction? – thinksteep Dec 27 '11 at 0:19
The textsize value from the xml file is 20dp, however the text.gettextsize() methods returns a float of 30.0, this is apparently in pixels. I can't figure out whats going on. – NJGUY Dec 27 '11 at 0:33
feedback

1 Answer

The difference here is that in the setTextSize(int size) method, the unit type by default is "sp" or "scaled pixels". This value will be a different pixel dimension for each screen density (ldpi, mdpi, hdpi).

getTextSize(), on the other hand, returns the actual pixel dimensions of the text.

You can use setTextSize(int unit, int size) to specify a unit type. The values for this can be found in the TypedValue class, but some of them are:

TypedValue.COMPLEX_UNIT_PX : Pixels

TypedValue.COMPLEX_UNIT_SP : Scaled Pixels

TypedValue.COMPLEX_UNIT_DIP : Device Independent Pixels

As explained at TextView.setTextSize behaves abnormally by kcoppock

I simply used the below:

textView.setTextSize(TypedValue.COMPLEX_UNIT_PX,size + increaseTextBy);

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.