是否可以在 Toast 视图上播放帧动画?
如果我想在 View 上播放帧动画,下面代码中的第 3-5 行通常对我有用。不幸的是,当我尝试将该视图应用于 toast 对象时,显示 toast 时它没有动画。 有谁知道是否可以在吐司对象上播放帧动画?如果是这样,怎么做? 谢谢
LayoutInflater inflaterSpin = getLayoutInflater();
View layout = inflaterSpin.inflate(R.layout.toast_layout, (ViewGroup) findViewById(R.id.toast_layout_root));
layout.setBackgroundResource(R.anim.anim_toast);
AnimationDrawable toastAnim = (AnimationDrawable) layout.getBackground();
toastAnim.start();
myToast = new Toast(getApplicationContext());
myToast.setView(layoutSpin);
myToast.show();