ShareCompat.IntentBuilder Google+ 全屏分享?

ShareCompat.IntentBuilder Google+ sharing in full screen?

我正在使用以下代码 post in Google+:

Intent shareIntent = ShareCompat.IntentBuilder.from(MainActivity.this)
      .setText("This is a sample test"
      .setSubject("This is my subject")
      .setType("text/plain")
      .getIntent()
      .setPackage("com.google.android.apps.plus");

startActivity(shareIntent);

有效。但它显示在一个对话框中。我记得它昨天全屏显示。我可以全屏显示吗? (因为如果我在对话框中显示它,由于某些原因我的背景会闪烁。)

有人可以帮忙吗?谢谢

请尝试使用 PlusShare.Builder。您的分享意向类似于:

Intent shareIntent = new PlusShare.Builder(MainActivity.this)
.setType("text/plain")
.setText("Your Text")
.setTitle("title")
.getIntent();
staryActivityForResult(shareIntent, requestCode);