因为最近工作较忙的原因,可能更新较慢,而且内容越来越细,从一个完整的app到一个
简单的功能,甚至到UI设计,今天介绍的就是一个常见的UI设计,先上图:
别看只是个简单的UI,只有几行代码,当时我把这个demo卖给客户赚了300RMB,就几
行代码,其实这个代码的核心在于,自定义animation的rotate动画,
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:fromDegrees="0"
android:repeatCount="infinite"
android:pivotX="50%"
android:pivotY="50%"
android:duration="3000"
ndroid:toDegrees="360.0"
/>
然后就是调用这个这个自定义的rotate
RotateAnimation rotateAnimation = (RotateAnimation) AnimationUtils.loadAnimation(context, R.anim.refresh); // 加载XML文件中定义的动画
并且通过自定义dialog完整显示出来,完整代码如下:
public MyProgressDialog(Context context, int theme) {
super(context, theme);
this.context = context;
View view = LayoutInflater.from(context).inflate(R.layout.load, null); // 加载自己定义的布局
ImageView img_loading = (ImageView) view.findViewById(R.id.img_load);
RelativeLayout img_close = (RelativeLayout) view.findViewById(R.id.img_cancel);
RotateAnimation rotateAnimation = (RotateAnimation) AnimationUtils.loadAnimation(context, R.anim.refresh); // 加载XML文件中定义的动画
img_loading.setAnimation(rotateAnimation);// 开始动画
setContentView(view);// 为Dialoge设置自己定义的布局
// 为close的那个文件添加事件
img_close.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
dismiss();
}
});
}
一个简单的旋转等待UI界面设计就大功告成了,demo源码下载稍后再提供。
原文:http://blog.csdn.net/heaimnmn/article/details/20542397