我是 Android 新手,但我知道Javascript
所以我对面向对象编程有一定的了解。
在这一行:
Resources myResources = getResources();
AnimationDrawable androidAnimation;
androidAnimation =
(AnimationDrawable)myResources.getDrawable(R.drawable.frame_by_frame);
- androidAnimation 是由 AnimationDrawable 类初始化的新对象吗?
- 在 (AnimationDrawable)myResources 中,类在括号中的语法是什么?