Ich habe gerade einen Dialog erstellt, und es ist ein ImageView
drin. Wenn ich show()
Methode aufrufen, funktioniert die Animation gut, aber zum zweiten Mal ich show()
aufrufen, funktioniert die Animation nicht. Wer weiß warum? (Der Dialog wurde nur einmal erstellt)Ansicht Animation funktioniert nicht im Dialog während Anruf zum zweiten Mal anzeigen
ImageView iv_loading = (ImageView) view.findViewById(R.id.iv_submitloading);
Animation animation=AnimationUtils.loadAnimation(context,R.anim.loading_view_anim);
iv_loading.setAnimation(animation);
Sie den Dialog angezeigt werden soll einmal oder mehr ?? –