我想在我的Android应用程序中添加一个按钮,允许我的应用程序用户直接从我的应用程序在Instagram上关注我。我该怎么做呢?目前我有这个代码,允许我的应用程序用户打开我的Instagram个人资料:


 Uri uri = Uri.parse(“http://instagram.com/ _u /“+ R.string.instagram_id);
 Intent likeIng = new Intent(Intent.ACTION_VIEW,uri);

 likeIng.setPackage( “com.instagram.android”);

试试{
 startActivity(likeIng);
 } catch(ActivityNotFoundException e){
 startActivity(new Intent(Intent.ACTION_VIEW,
 Uri.parse(“http://instagram.com/”+ R.string.instagram_id)));
 }
 代码>