本文介绍了从非活动类调用新意图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
从非活动类调用新意图
为
animlation.setAnimationListener( new Animation.AnimationListener(){
private 上下文上下文;
@覆盖
public void onAnimationEnd(动画)动画){
// TODO自动生成的方法存根
此 .context.startActivity( new Intent( this 。 context,MyBig1。 class ));
}
@ Override
public void onAnimationRepeat(动画动画){
// TODO自动生成的方法存根
}
@覆盖
public void onAnimationStart(动画动画){
// TODO自动生成的方法存根
}
} );
给出错误
MyBig1.class 具有 MyBig1的构造函数(上下文context);
什么是解决方案
解决方案
while calling a new intent from a non activity class
as
animlation.setAnimationListener(new Animation.AnimationListener(){ private Context context; @Override public void onAnimationEnd(Animation animation) { // TODO Auto-generated method stub this.context.startActivity(new Intent(this.context,MyBig1.class)); } @Override public void onAnimationRepeat(Animation animation) { // TODO Auto-generated method stub } @Override public void onAnimationStart(Animation animation) { // TODO Auto-generated method stub } });
giving error
as MyBig1.class has Constructor with MyBig1(Context context);
what is the solution
解决方案
这篇关于从非活动类调用新意图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!