我这样做了它不起作用?
public class AnimationActivity extends Activity{
private AnimationDrawable yourAnimation;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.animation);
getIntentValues();
final ImageView imageView = (ImageView) findViewById(R.id.animation_iv);
imageView.setBackgroundResource(R.drawable.loadinganim);
yourAnimation = (AnimationDrawable) imageView.getBackground();
yourAnimation.start();
}
RES \抽拉\ loading.xml
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/v1" android:duration="160" />
<item android:drawable="@drawable/v4" android:duration="160" />
<item android:drawable="@drawable/v7" android:duration="160" />
<item android:drawable="@drawable/v8" android:duration="160" />
<item android:drawable="@drawable/v9" android:duration="160" />
<item android:drawable="@drawable/v10" android:duration="160" />
<item android:drawable="@drawable/v11" android:duration="160" />
</animation-list>
RES \布局\ animation.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView
android:id="@+id/animation_iv"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
动画是从imageView onClick()开始的。如果有人有想法帮助我。
答案 0 :(得分:3)
view.setImageResource(R.anim.framer);
view.post(new Runnable() {
public void run() {
AnimationDrawable animationDrawable = (AnimationDrawable)view.getDrawable();
animationDrawable.start();
}
});
这对我有用了!!!!
答案 1 :(得分:2)
是的,你的方法是正确的,但你需要实现这个 -
public void onWindowFocusChanged (boolean hasFocus)
{
super.onWindowFocusChanged(hasFocus);
AnimationDrawable yourAnimation =
(AnimationDrawable) animation.getBackground();
if(hasFocus) {
frameAnimation.start();
} else {
frameAnimation.stop();
}
}
就像这个example
一样答案 2 :(得分:1)
似乎在onCreate方法运行时,Drawable未完全初始化,因此启动动画将不起作用。
使用onWindowFocusChanged方法开始制作动画。遗憾的是,这只记录在Animation Drawable Guide中,而不是在相应的Java Docs中。
我就此问题提交了Documentation Bug。如果你想让Android团队改进他们的文档,那就明白这个问题。
答案 3 :(得分:0)
好像你做错了。你的背景是StateListDrawable
,而不是AnimationDrawable
。类似的问题here。希望它会有所帮助。
答案 4 :(得分:0)
&#34;活动无法在他们的窗口动画制作期间绘制。为了知道何时开始绘图是安全的,他们可以覆盖此方法,当进入动画完成时将调用该方法&#34;。
您可以覆盖此方法并以此方法启动动画。