Skip to content Skip to sidebar Skip to footer

Android - Start Intent

When searching for how to launch Intents some people have listed like below. Can you launch an Intent with the following lines? How would you do it? Display Settings #Intent;compo

Solution 1:

For the first line, it will be

Intenti=newIntent();
i.setClassName("com.android.settings", "com.android.settings.DisplaySettings");
startActivity(i);

The rest of them will be similar to this.

Post a Comment for "Android - Start Intent"