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.
任意のアプリケーションからすべてのアプリ画面にインテントを送信したい。全アプリ画面についてのご参考までに全アプリ画面例. この意図に関するヘルプを見つけることができません。どんな助けでも大歓迎です。
任意のダイアログ ボックスで [キャンセル] をクリックすると、アプリケーションが終了し、ユーザーはすべてのアプリ画面に移動する必要があります。
私が使う:
Intent startMain = new Intent(Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(startMain);