Created
November 18, 2012 22:36
-
-
Save raultm/4107911 to your computer and use it in GitHub Desktop.
Android : Beginner Tips & Snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Call from a Context(e.g. an Activity) | |
public void openTargetActivity(){ | |
startActivity(new Intent(this, TargetActivity.class)) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Don't forget to add the activity in the manifest | |
<application> | |
<!-- [...] --> | |
<activity android:name="com.raulete.beginner.TargetActivity"/> | |
</application> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment