简体   繁体   English

Android Share to G +缺少位置字段

[英]Android Share to G+ is missing location field

The location field no longer appears in the share to G+ dialog on Android. 位置字段不再出现在Android上的“与Google+共享”对话框中。 This is the code I'm using: 这是我正在使用的代码:

Intent shareIntent = new PlusShare.Builder(this.getActivity())
        .setType("text/plain")
        .setText("Test")
        .getIntent();
startActivityForResult(shareIntent, 0);

Previously, in the share dialog, you could add the location (similar to the "Write" dialog in the G+ app). 以前,您可以在共享对话框中添加位置(类似于G +应用中的“写入”对话框)。 With a recent update to play services, that location field is no longer there. 随着播放服务的最新更新,该位置字段不再存在。

Am I missing something? 我想念什么吗?

This is a screenshot of the current share dialog. 这是当前共享对话框的屏幕截图

And this is a screenshot of the write dialog in the G+ app. 这是 G +应用中“写入”对话框的屏幕截图

The sharing actually moved from the Google+ app to Google Play Services, and they are slightly different sharing experiences - for example the new contacts first sharing is only in the Google Play services sharebox. 共享实际上是从Google+应用程序移到了Google Play服务,并且它们的共享体验略有不同-例如,新联系人首次共享仅在Google Play服务共享框中。 If its a feature you're keen on, probably the best bet is to file a request in the Platform issue tracker: https://code.google.com/p/google-plus-platform/issues/list 如果您热衷于此功能,最好的选择是在平台问题跟踪器中提出请求: https : //code.google.com/p/google-plus-platform/issues/list

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM