我正在使用以下代码在 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);
有用。但它显示在一个对话框中。我记得昨天它是全屏显示的。我可以全屏显示吗?(因为如果我在对话框中显示它,我的背景会因为某些原因而闪烁。)
有人可以帮忙吗?谢谢