我有问题。在我的应用程序中,我有一个带图像的幻灯片。点击某个图片时,会打开一个网址:
Intent browserIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse(target[idImage]));
startActivity(browserIntent);
问题是当按下后退按钮时,应用程序会关闭。我该怎么办?我提到在带幻灯片的课上我覆盖按下后退按钮的方法,以便前往上一课。
这是我的代码:
@Override
protected void onPause() {
super.onPause();
System.out.println("onPause!!!!!!");
t.cancel();
}
@Override
protected void onResume() {
super.onResume();
System.out.println("onResume!!!!!!");
vf.startFlipping();
}
其中t是Timer
,vf是ViewFlipper