android 按钮旋转等待,android高分段进阶攻略(3)旋转等待UI界面设计

因为最近工作较忙的原因,可能更新较慢,而且内容越来越细,从一个完整的app到一个

简单的功能,甚至到UI设计,今天介绍的就是一个常见的UI设计,先上图:

8ecf753e8faf2d43c1298e61b9d74aa9.png

别看只是个简单的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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值