我宣布了一个将进入下一个活动的意图。但是我收到一条错误消息,指出构造函数意图未定义。感谢任何能告诉我如何解决这个问题的人。
if (i < badsprite) {
score++;
badsprite--;
sounds.play(sndSquish, 1.0f, 1.0f, 0 , 0, 1.5f);
} else{
life--;
sounds.play(sndOuch, 1.0f, 1.0f, 0, 0, 1.5f);
}
sprites.remove(sprite);
temps.add(new PorchTempSprite(temps, this, x, y, bmpSlime));
if (badsprite == 0){
Intent m = new Intent(LivrmStartActivity.class); //Where the error is
startActivity(m); //And here too
}
break;
}
}
}
}
return true;
}
}
答案 0 :(得分:1)
你得到那个错误,因为没有这样的构造函数。假设您的其余代码正确无误,请改用new Intent(this, LivrmStartActivity.class)
。