MASTG-KNOW-0025 暗黙的インテント (Implicit Intents)
// Note the specification of a concrete component (DownloadActivity) that is started by the intent. Intent downloadIntent = new Intent(this, DownloadActivity.class); downloadIntent.setAction("android.intent.action.GET_CONTENT") startActivityForResult(downloadIntent);// Developers can also start an activity by just setting an action that is matched by the intended app. Intent downloadIntent = new Intent(); downloadIntent.setAction("android.intent.action.GET_CONTENT") startActivityForResult(downloadIntent);
PreviousMASTG-KNOW-0023 強制アップデート (Enforced Updating)NextMASTG-KNOW-0105 ユーザーによるスクリーンショットとスクリーン録画 (User-Initiated Screenshots and Screen Recording)
Last updated