Last active
June 20, 2016 20:40
-
-
Save suhanlee/7299622762a7a5f0a65d1d15121b1e82 to your computer and use it in GitHub Desktop.
Instagram-android
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 insta_intent = getPackageManager().getLaunchIntentForPackage("com.instagram.android"); | |
insta_intent.setComponent(new ComponentName("com.instagram.android", "com.instagram.android.activity.UrlHandlerActivity")); | |
insta_intent.setData(Uri.parse("https://www.instagram.com/explore/tags/tech/")); // 해시태그 주소 넣기 | |
startActivity(insta_intent); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment