我是开发Android操作系统的新手,使用https://developer.android.com/
时遇到困难我想调整页面上写的建议,但我想我根本不明白该怎么做。
例如,我现在看到https://developer.android.com/reference/android/animation/ObjectAnimator
并看到xml代码,例如
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="1000"
android:repeatCount="1"
android:repeatMode="reverse">
<propertyValuesHolder android:propertyName="x" android:valueTo="400"/>
<propertyValuesHolder android:propertyName="y" android:valueTo="200"/>
</objectAnimator>
我将其粘贴到了xml文件中,但它根本不起作用。
有人可以告诉我如何正确使用页面吗?