码迷,mamicode.com
首页 > 其他好文 > 详细

用Dialog 做自定义动画,加播放监听

时间:2014-09-03 12:32:36      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   io   ar   art   div   cti   

final Dialog customDialog = new Dialog(this);

customDialog.setTitle(R.string.attention);

customDialog.setContentView(R.layout.connectionview);

ImageView image = (ImageView)customDialog.findViewById(R.id.anim);

image.setBackgroundResource(R.drawable.connection);

customDialog.setOnShowListener(new DialogInterface.OnShowListener(){

  public void onShow(android.content.DialogInterface dialog){

    ImageView image =(ImageView)customDialog.findViewById(R.id.anim);

    AnimationDrawable ad = (AnimationDrawable)image.getBackground();

    if(ad != null) {
  
    ad.start();

  }

}

});



customDialog.show();



这里利用的onShowListener,注意这个接口需要高版本的SDK。

 

用Dialog 做自定义动画,加播放监听

标签:android   style   blog   color   io   ar   art   div   cti   

原文地址:http://www.cnblogs.com/niray/p/3953138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!