public void onWindowFocusChanged(boolean hasFocus) {
if (customProgressDialog == null) {
return;
}
ImageView mprogressImage = (ImageView) findViewById(R.id.loadingImageView);
Animation animRoute = new RotateAnimation(0.0f, +360.0f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
animRoute.setDuration(1000);
animRoute.setRepeatMode(Animation.RESTART);
animRoute.setRepeatCount(Animation.INFINITE);
LinearInterpolator lir = new LinearInterpolator();
animRoute.setInterpolator(lir);
mprogressImage.startAnimation(animRoute);
}
CustomProgressDialog.java 文件源码
java
阅读 36
收藏 0
点赞 0
评论 0
项目:AmenWeather
作者:
评论列表
文章目录