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.
我在我添加了贪睡功能的应用程序中使用了闹钟。我想要那个,当我按下贪睡按钮时,我应该去主屏幕但不知道如何做到这一点。
根据您的要求,使用以下任何命令:
MainActivity.this.finish()
MainActivity.this.moveTaskToBack(true)
启动启动器应用程序:
代码:
Intent startMain = new Intent(Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(startMain);