Commit a647ebe1 by zihan

add dialog file

parent 9f956ef8
package com.huxi.tools;
import android.app.Dialog;
import android.content.Context;
import android.widget.ImageView;
import android.widget.TextView;
/**
* Created by Phyllis on 16/3/24.
*/
public class ProgressDialog extends Dialog {
public ImageView animImageView;
public ImageView statusImageView;
public TextView messageTextView;
public ProgressDialog(Context context) {
super(context);
}
public ProgressDialog(Context context, int theme) {
super(context, theme);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment