只是一个快速的问题。
我有一个“与 G+ 共享”按钮,我使用最简单的方法集成了该按钮:https:
//plus.google.com/share ?url=http:// ...
有没有办法在评论框中插入文本?
如果这不能用这里使用的方法来完成,可以用其他方法来完成吗?
只是一个快速的问题。
我有一个“与 G+ 共享”按钮,我使用最简单的方法集成了该按钮:https:
//plus.google.com/share ?url=http:// ...
有没有办法在评论框中插入文本?
如果这不能用这里使用的方法来完成,可以用其他方法来完成吗?
无论您的设备中是否安装了 Google+ 应用程序,它都应该对您有所帮助,因此请尝试...
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
shareMediaButton = (Button) findViewById(R.id.share_button);
shareMediaButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if(isGooglePlusInstalled())
{
PlusShare.Builder share = new PlusShare.Builder(MainActivity.this);
share.setText("write your message here.....!");
//share.addStream(selectedImage);
share.setType("text/plain");
startActivityForResult(share.getIntent(), 0);
}else{
Intent shareIntent = new PlusShare.Builder(MainActivity.this)
.setType("text/plain")
.setText("write your message here.....!")
.getIntent();
startActivityForResult(shareIntent, 0);
}
}
public boolean isGooglePlusInstalled()
{
try
{
getPackageManager().getApplicationInfo("com.google.android.apps.plus", 0 );
return true;
}
catch(PackageManager.NameNotFoundException e)
{
return false;
}
}
});
}