2016-11-14 35 views

回答

0

@Override protected void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState);

if ((getIntent().getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) != 0) { 
    // Activity was brought to front and not created, 
    // Thus finishing this will get us to the last viewed activity 
    finish(); 
    return; 
} 


// Regular activity creation code... } 
+0

這解決了我的問題。 –

相關問題