I have a Google Plus page
Google Plus
https://plus.google.com/u/0/b/101839105638971401281/101839105638971401281/posts
and an Android application.
public void openTwitter(String twitterName) { try { startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse("twitter://user?screen_name=" + twitterName))); } catch (ActivityNotFoundException e) { startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse("https://twitter.com/#!/" + twitterName))); } }