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);