我正在使用以下代码在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);
有效。但它显示在一个对话框中。我记得它昨天全屏显示。我可以全屏显示吗? (因为如果我在对话框中显示它,我的背景会因某些原因而闪烁。)
有人可以帮忙吗?谢谢
答案 0 :(得分:1)
请尝试使用PlusShare.Builder
。您的分享意图如下:
Intent shareIntent = new PlusShare.Builder(MainActivity.this)
.setType("text/plain")
.setText("Your Text")
.setTitle("title")
.getIntent();
staryActivityForResult(shareIntent, requestCode);