0

我正在使用以下代码在 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);

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

有人可以帮忙吗?谢谢

4

1 回答 1

1

尝试PlusShare.Builder改用。您的分享意图将类似于:

Intent shareIntent = new PlusShare.Builder(MainActivity.this)
.setType("text/plain")
.setText("Your Text")
.setTitle("title")
.getIntent();
staryActivityForResult(shareIntent, requestCode); 
于 2015-01-23T07:37:25.280 回答