Results 3 comments of Scott Weber

A very good idea! We have actually talked about this briefly, but have not taken it any further than casual discussion.

Another consideration is that, while the following code works just fine for English and some other languages, there are many languages where such logic may not be appropriate (e.g. Korean,...

It seems like this ought to be built into the library, but there is a workaround: ``` PropertyValuesHolder pvh = PropertyValuesHolder.ofFloat("alpha", 0f, 1f); ObjectAnimator.ofPropertyValuesHolder(AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(myView) : myView, pvh).start(); ```