我正在尝试让我的应用程序在 Google+ 中共享某些代码,并且当用户安装了官方 Google+ 应用程序时它可以正常工作。然而,根据文档,当它没有安装时,应该有一个弹出窗口告诉用户他/她没有安装应用程序,当点击按钮时,应用程序应该被重定向到 Google Play 以下载它..但是当点击按钮时,什么也没有发生。
请问有什么想法吗?这是我的按钮代码:
plus.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
shareDialog.dismiss();
// Launch the Google+ share dialog with attribution to your app.
Intent shareIntent = ShareCompat.IntentBuilder.from(getActivity()).setType("text/plain").setText("Welcome to the Google+ platform. https://developers.google.com/+").getIntent()
.setPackage("com.google.android.apps.plus");
int errorCode = GooglePlusUtil.checkGooglePlusApp(getActivity());
if (errorCode != GooglePlusUtil.SUCCESS) {
GooglePlusUtil.getErrorDialog(errorCode, getActivity(), 1).show();
} else {
startActivity(shareIntent);
}
}
});
提前非常感谢!