我有一个新的Intent Activity我想在双击注册时打开,我知道双击工作正常,但每次我尝试启动新活动时它都会停止工作? (强制退出)
代码:
imView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
long thisTime = System.currentTimeMillis();
if (thisTime - lastTouchTime < 250) {
// Double click
//Toast toast = Toast.makeText(getApplicationContext(), "Double Tap Worked!", 10);
//toast.show();
lastTouchTime = -1;
Intent myIntent = new Intent(v.getContext(), zoom.class);
startActivityForResult(myIntent, 0);
} else {
// too slow
lastTouchTime = thisTime;
}
}
});
答案 0 :(得分:13)
您可能没有将第二个活动放在清单文件中
<activity android:name="zoom"
android:label="@string/app_name"/>
答案 1 :(得分:1)
无论你没有共享LogCat,我想这就是你要找的东西。
Intent myIntent = new Intent(YourClass.this, zoom.class);
每次创建新意图时,都会向新意图上下文发送调用者,而不是启动意图的视图上下文,并将活动添加到清单中。