我試圖用這段代碼來重置我的應用程序。 但是,這個想法開關出它重新設置它並返回。我該如何製作一個按鈕,將android應用程序重置爲onCreate(在應用程序內)?
尋找一個解決方案,其中我的輸入數據已消失,並回到oncreate版本。 沒有任何瘋狂的動畫。
if (v == buttonReset)
{
Intent i = getBaseContext().getPackageManager()
.getLaunchIntentForPackage(getBaseContext().getPackageName());
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);
}
Thx,這比我的解決方案更好。 這次它不跳出應用程序並返回到mainActivity.class。 –
所以,如果這項工作可以接受我的答案。見http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work得到更多的信息 – Dulanga