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很陌生,所以请耐心等待。
当您开始一项新活动时,默认情况下,设备上的“后退”按钮应将您带回到上一个活动。 就我而言,我必须按两次后退按钮才能返回上一个活动。
请指教
private int count = 0; @Override public void onBackPressed() { count++; if (count == 2) { //Do your stuff here count = 0; } }