以下可以设置Frame动画可以循环播放的属性是( )
A. android:oneshot="false"
B. android:drawable="@drawable/start_icon1"
C. android:background="@anim/start_animation"
D. android:duration="20"
TranslateAnimation(30.0f, -80.0f, 30.0f, 300.0f);可以构建一个位置移动的动画效果,以上设置的动画结果是( )
A. 从坐标(30.0f, -80.0f)移动到坐标(30.0f, 300.0f)
B. 从坐标(30.0f, 30.0f)移动到坐标(-80.0f, 300.0f)
C. 从坐标(30.0f,300.0f)移动到坐标(30.0f, -80.0f)
D. 从坐标(-80.0f, 300.0f)移动到坐标(30.0f, 30.0f)