I have TextView and want to use setScaleX()/setScaleY() to make the text zoomable. But when I try to select some text by calling someTextView.setTextIsSelectable(true); and TextView has zoom other than 1.0f the text selection markers apprear in wrong place, it seems that the selection is shown in the old place of selected text.

Please see screenshots

NO ZOOM ZOOM 1.2f

A sample project

Can anyone help me with this problem. Thanks.

link|improve this question
it should not be zoomed if u given the setScaleX(1.0f) . and m not sure about it not maintain the selected position . have tried it on api level 14 it works perfect for me !! – dhams Jan 11 at 8:47
API Level 14 means Android 4.0, 4.0.1, 4.0.2, unfortunately I do not own any Ice Cream Sandwich device to check this, but I need this working on Honeycomb devices. And it does not work on Honeycomb devices Android 3.2(API 13), Android 3.1.x(API 12) and Android 3.0.x(API 11) – HaMMeR Jan 11 at 20:20
feedback

2 Answers

up vote 2 down vote accepted
+50

This is a known issue that we recently fixed internally. Consider changing the font size instead.

link|improve this answer
Thank you. Could you please give any directions, comments or example how can I fix this for Android 3.x? – HaMMeR Jan 11 at 20:22
feedback

I don't see your code, but I assume that you didn't make it selectable after zooming? That's all I can say without seeing the code.

link|improve this answer
No you are not right. The problem persists when I make selection after zooming or before zooming, sorry but I've checked this already. – HaMMeR Jan 4 at 21:16
I also added sample project. Try it. – HaMMeR Jan 4 at 21:30
feedback

Your Answer

 
or
required, but never shown

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