我有 Bitmap bmp = new Bitmap(@"C:\Users\PJ.ITAMS\Deskto\originalTiff.tif");
bmp.Save(@"C:\Users\PJ.ITAMS\Desktop\savedTiff.tif",ImageFormat.Tiff);
bmp.Dispose();
。点击按钮,我就像这样
Activity A
Activity B
当我在 {
startActivity(new Intent(A.this, B.class));
}
时,我按下了主页按钮。如果我重新启动应用程序,它将导航到A而不是B.有人可以指导我如何导航到B?
答案 0 :(得分:2)
我在清单文件中有android:clearTaskOnLaunch="true"
,这导致了问题。删除此行解决了我的问题。