Miha-x64 / Mikes_IDEA_extensions

IntelliJ IDEA: missing parts.
Apache License 2.0
34 stars 7 forks source link

Question: How do you use the "Reflective property animation " inspection? #12

Closed AndroidDeveloperLB closed 2 years ago

AndroidDeveloperLB commented 2 years ago

v0.19

I've noticed an inspection of code similar to this (made it simple and shorter here) :

ObjectAnimator.ofInt(horizontalScrollView, "scrollX",123) 

And after using the inspection quick-fix, I got this weird code that can't be built:

ObjectAnimator.ofInt(horizontalScrollView, View.null, 123)

What is this "View.null" ? What is it supposed to be? How is it better?

Miha-x64 commented 2 years ago

Thanks for noting. Obviously, this is a bug.

AndroidDeveloperLB commented 2 years ago

Oh ok. For a moment I thought you wrote "Thanks for nothing" and was very confused... I was about to ask why you wrote it. :)

AndroidDeveloperLB commented 2 years ago

Fixed?

Miha-x64 commented 2 years ago

image Of course, as usual.

AndroidDeveloperLB commented 2 years ago

Oh thank you!