Skip to content

Instantly share code, notes, and snippets.

@suhanlee
Last active June 20, 2016 20:40
Show Gist options
  • Save suhanlee/7299622762a7a5f0a65d1d15121b1e82 to your computer and use it in GitHub Desktop.
Save suhanlee/7299622762a7a5f0a65d1d15121b1e82 to your computer and use it in GitHub Desktop.
Instagram-android
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