获取 逐帧动画 当前帧索引

AnimationDrawable amd;

Field f=AnimationDrawable.class.getDeclaredField("mCurFrame");
f.setAccessible(true);
int curFrame=f.getInt(amd);



java反射包

你可能感兴趣的:(java)