new Thread(new Runnable() {
@Override
public void run() {
try {
mFile = Glide.with(mContext).asFile().load(Constant.IMG_CONFIG + mIconUrl).submit().get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
}
}).start();