Created
April 2, 2011 05:52
-
-
Save mactkg/899272 to your computer and use it in GitHub Desktop.
techhub_intent.java
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
Intent intent = new Intent(helloworld.this.hogehoge.class); | |
intent.setAction(Intent_ACTION_VIEW); | |
startActivity(intent); | |
// if you want return some information, you should use startActivityForResult(). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment