3

i thought nineoldandroids is a framework for API lower then HONEYCOMB...

so what do i wrong?? my HTC Android 2.2.1 throws this error (Couldn't find setter/getter for property alpha with value type float): on all these lines:

ObjectAnimator.ofFloat(mHintViewRing, "alpha", 0);
ObjectAnimator.ofFloat(mHintViewRing, "alpha", 0f, 1f);

EDIT: i posted the wrong line sorry:

PropertyValuesHolder.ofFloat("alpha", 1f, 0.1f);

was the bad one

Mario
  • 758
  • 12
  • 25

1 Answers1

1

After some tries, i replaced all PropertyValuesHolder with ObjectAnimator (with float vars)

Mario
  • 758
  • 12
  • 25
  • yes like i wrote. The property values holder makes the problem. so i userd an object animator object instead. – Mario May 20 '13 at 19:26