Quote:
Originally Posted by comox
I have no Android programming experience but I wonder if you could write a custom function to override the wrap function in the standard Android library?
|
No, you can't write such a function. Wrapping is done in the heart of Android in the "native library". As far as I can find there is no way to replace that library short of making a custom version of the operating system.
However, there is a hack that works, sort of. If one accepts to do everything twice then it is possible to get the measurements with the first pass then show the correct info in the second pass. Took 12 hours to make this appear to work. I say "appear to" because I am not convinced that 100% of the cases are covered. In addition, because everything is done twice there may be situations where performance is affected. We will see.