一 LayoutAnimationController 的使用方法
二 ListView 与Animations 结合使用
三 AnimationListener 的使用方法
介绍LayoutAnimationController ,这个类相当重要,它可以增强用户体验.
LayoutAnimationController 用于为一个layout 里面的控件,或者是一个ViewGroup里面的控件设置动画效果
可以在xml文件中设置,也可以在java类中设置
第一种方法: 在xml文件设置
1. 在res/anim 文件夹中他建一个新文件,名为list_anim_layout.xml文件:
<layoutAnimation xmlns:android=http://schemas.android.com/apk/res/android"
android:delay="0.5" android:animationOrder="random" android:animation="@anim/list_anim" />
在0.5表示0.5秒,不再是0.5毫秒
2.在布局文件中为ListView添加如下配置 android:layoutAnimation="@anim/list_anim_layout"
第二种方法: 在java类中使用 LayoutAnimationController
1. 创建一个Animation对象: 可以通过装载xml文件,或者直接使用Animation 的构造函数创建Animation对象;
2. 使用如下代码创建LayoutAnimationController 对象: LayoutAnimationController lac = new LayoutAnimationController(animation);
3. 设置控件显示的顺序: lac.setOrder(LayoutAnimationController.ORDER_NORMAL);
4. 为ListView 设置LayoutAnimationController 属性: listView.setLayoutAnimation(lac);
具体代码请参考:layoutAnimationsTest工程
---------------------------
关于AnimationListener
AnimationListener 是一个监听器,该监听器在动画执行的各个阶段会得到通知,从而调用相应的方法
主要包括以下三个方法
onAnimationEnd(Animation animation)
onAnimationRepeat(Animation animation)
onAnimationStart(Animation animation)
实现效果如下
不过幸运的是,有人已经做了这部分工作,见iPhone PNG Images Normalizer Python,这里是采
用python对png进行转换,大家如果有兴趣,可以仔细读一下源代码,如果只是想获取可读的png文件,请在上述网站进行下载或在本地下载ipin.py.zip。
此python程序的使用方法很简单,当然首先系统中要求安装了python。解压ipin.py.zip后,将ipin.py文件复制到刚才解压的包括所有png文件的目录下,然后运行:
python ipin.py
回答Y,所有的png将被转换成通常的png格式,这样你使用预览程序就可以看到了。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; }else{ while ([cell.contentView.subviews lastObject] != nil) { [(UIView*)[cell.contentView.subviews lastObject] removeFromSuperview]; //删除并进行重新分配 } }