当前位置: 编程技术>移动开发
本页文章导读:
▪关于Activity的跳旋动画 关于Activity的跳转动画
在1.6之后,也就是从API 5开始,加入了一个overridePendingTransition函数,是用来处理Activity跳转时实现动画效果的。在网上,很多人发帖或者转发,只是很简单的提.........
▪ mac上无法安装adt有关问题总结 mac下无法安装adt问题总结
1. Eclipse 插件安装不全
2. Eclispe 的网络没有设置代理
......
▪ 愉快网 开心网
自己用的资料
......
[1]关于Activity的跳旋动画
来源: 互联网 发布时间: 2014-02-18
关于Activity的跳转动画
在1.6之后,也就是从API 5开始,加入了一个overridePendingTransition函数,是用来处理Activity跳转时实现动画效果的。在网上,很多人发帖或者转发,只是很简单的提供了一种写法:
但是这种写法在项目中使用的话,会出现问题,在1.6的测试机器上会出现一个VerifyError的错误,因为overridePendingTransition 会在加载类加载时调用,在1.6的机器上会进行一个预编译,直接这样写就会出现错误。
在国外某论坛搜索了一下,发现了这样一段话:
The VM will attempt to find overridePendingTransition() when the class is loaded, not when that if() statement is executed.
Instead, you should be able to do this:
if (android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.DONUT) {
SomeClassDedicatedToThisOperation.overridePendingTransition(this, ...);
}
where the implementation of overridePendingTransition() in SomeClassDedicatedToThisOperation just calls overridePendingTransition() on the supplied Activity.
So long as SomeClassDedicatedToThisOperation is not used anywhere else, its class will not be loaded until you are inside your if() test, and you will not get the VerifyError.
这里已经很明确的给出了解决办法。
处理方式:
调用方式:
这样,你引用跳转动画函数的模型类是生成了,但是里边的函数是不会被调用的。这样就不会被加载到jvm中去。问题也就解决了。
在1.6之后,也就是从API 5开始,加入了一个overridePendingTransition函数,是用来处理Activity跳转时实现动画效果的。在网上,很多人发帖或者转发,只是很简单的提供了一种写法:
if (android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.DONUT) { overridePendingTransition(R.anim.push_up_in,R.anim.push_up_out); }
但是这种写法在项目中使用的话,会出现问题,在1.6的测试机器上会出现一个VerifyError的错误,因为overridePendingTransition 会在加载类加载时调用,在1.6的机器上会进行一个预编译,直接这样写就会出现错误。
在国外某论坛搜索了一下,发现了这样一段话:
The VM will attempt to find overridePendingTransition() when the class is loaded, not when that if() statement is executed.
Instead, you should be able to do this:
if (android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.DONUT) {
SomeClassDedicatedToThisOperation.overridePendingTransition(this, ...);
}
where the implementation of overridePendingTransition() in SomeClassDedicatedToThisOperation just calls overridePendingTransition() on the supplied Activity.
So long as SomeClassDedicatedToThisOperation is not used anywhere else, its class will not be loaded until you are inside your if() test, and you will not get the VerifyError.
这里已经很明确的给出了解决办法。
处理方式:
public class AnimationModel { private Activity context; public AnimationModel(Activity context){ this.context = context; } /** * call overridePendingTransition() on the supplied Activity. * @param a * @param b */ public void overridePendingTransition(int a, int b){ context.overridePendingTransition(a, b); } }
调用方式:
if (android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.DONU) { (new AnimationModel(Profile.this)) .overridePendingTransition(R.anim.push_up_in, R.anim.push_up_out); }
这样,你引用跳转动画函数的模型类是生成了,但是里边的函数是不会被调用的。这样就不会被加载到jvm中去。问题也就解决了。
[2] mac上无法安装adt有关问题总结
来源: 互联网 发布时间: 2014-02-18
mac下无法安装adt问题总结
1. Eclipse 插件安装不全
2. Eclispe 的网络没有设置代理
[3] 愉快网
来源: 互联网 发布时间: 2014-02-18
开心网
自己用的资料
自己用的资料
最新技术文章: