Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开发了一个应用程序,但是当我单击平板电脑或 android 手机(不是后退按钮)中的主页按钮时,它的行为仅类似于后退按钮。我的应用程序中有很多活动。如何解决这个问题。提前致谢
因为您没有为当前活动调用 finish(),
因此,每当您通过 Intent 类调用另一个 Activity 时,您都应该完成当前的活动,例如
CurrentActivityClass.finish();
在调用另一个活动类进行导航之前。