android实现加载动画对话框

本文实例为大家分享了android实现加载动画对话框的具体代码,供大家参考,具体内容如下

先来两张效果图

android实现加载动画对话框_第1张图片

android实现加载动画对话框_第2张图片

自定义对话框:

public class LoadingProgressDialog extends ProgressDialog {
 
 private AnimationDrawable mAnimation;
 private Context mContext;
 private ImageView mImageView;
 private String mLoadingTitle;
 private TextView mLoadingTv;
 private int mResid;
 
 public LoadingProgressDialog(Context context, String content, int id) {
 super(context);
 this.mContext = context;
 this.mLoadingTitle = content;
 this.mResid = id;
 setCanceledOnTouchOutside(true);
 }
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 initView();
 initData();
 }
 
 private void initData() {
 
 mImageView.setBackgroundResource(mResid);
 mAnimation = (AnimationDrawable) mImageView.getBackground();
 mImageView.post(new Runnable() {
 @Override
 public void run() {
 mAnimation.start();
 }
 });
 mLoadingTv.setText(mLoadingTitle);
 
 }
 
 public void setContent(String str) {
 mLoadingTv.setText(str);
 }
 
 private void initView() {
 setContentView(R.layout.progress_dialog);
 mLoadingTv = (TextView) findViewById(R.id.loadingTv);
 mImageView = (ImageView) findViewById(R.id.loadingIv);
 }
}

在layout文件夹下建立progress_dialog.xml



 
 
 
 
 

在res文件夹下建立anim文件夹,然后在里面建立frame.xml
动画是由一张一张的图片逐帧播放的,里面每一个item就是一张图片,动画有多少帧就有多少张图片,有多少图片就有多少item。



 
 
 
 

用法:

LoadingProgressDialog dialog =new LoadingProgressDialog(MainActivity.this, "正在加载中...",R.anim.frame);
//打开
dialog.show();
//隐藏
dialog.dismiss();

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(android实现加载动画对话框)