WAI
Status Update
Comments
ga...@gmail.com <ga...@gmail.com> #2
+1. Would be nice so then we could keep offline docs in sync with online docs.
ma...@googlemail.com <ma...@googlemail.com> #3
+1. This is needed for OpenOffice.org2GoogleDocs OpenOffice.org plugin.
ob...@gmail.com <ob...@gmail.com> #4
this would be nice, please add.
ro...@gmail.com <ro...@gmail.com> #5
Please add this. it's a serious shortcoming
va...@gmail.com <va...@gmail.com> #6
Same here!
It would be a great addon to Google Docs and to OpenOffice
It would be a great addon to Google Docs and to OpenOffice
du...@gmail.com <du...@gmail.com> #7
Me too. Please add this functionality.
kl...@gmail.com <kl...@gmail.com> #8
I would like to cast a vote for this feature to be added. This would be immensely
helpful for me.
helpful for me.
fl...@googlemail.com <fl...@googlemail.com> #9
+1
ka...@gmail.com <ka...@gmail.com> #10
+1. Would be very helpful for me as well.
ar...@gmail.com <ar...@gmail.com> #11
OpenOffice.org2GoogleDocs is a great extension !!! Please, make all the adjustments
to enable update of document contents through the DocList API for us, users of OOo
and GDocs !!! P-p-p-p-p-please !!!
to enable update of document contents through the DocList API for us, users of OOo
and GDocs !!! P-p-p-p-p-please !!!
ar...@gmail.com <ar...@gmail.com> #12
+1
ob...@gmail.com <ob...@gmail.com> #13
The same wish here!
da...@gmail.com <da...@gmail.com> #14
+1 This feature is very important!!
Tks.
Tks.
ar...@gmail.com <ar...@gmail.com> #15
"Would be nice so then we could keep offline docs in sync with online docs."
True. Please consider adding this feature. +1
True. Please consider adding this feature. +1
ar...@gmail.com <ar...@gmail.com> #16
Yep I'm another one who thinks this is a must +1 for me
[Deleted User] <[Deleted User]> #17
+1 - I need this for the GoogleDocs extension as well.
[Deleted User] <[Deleted User]> #18
I cannot agree more. +1
Description
demonstration page if at all possible, or attach code.
Example code:
public class MainActivity extends Activity implements OnMarkerClickListener {
private static final String TAG = "InfoWindowsBug";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
GoogleMap map = ((MapFragment)getFragmentManager().findFragmentById(R.id.map)).getMap();
map.setOnMarkerClickListener(this);
map.addMarker(new MarkerOptions().position(new LatLng(0d, 0d)).title("something"));
}
@Override
public boolean onMarkerClick(Marker marker) {
Log.v(TAG, "before: " + marker.isInfoWindowShown());
if(marker.isInfoWindowShown()) {
marker.hideInfoWindow();
} else {
marker.showInfoWindow();
}
Log.v(TAG, "after: " + marker.isInfoWindowShown());
return true;
}
}
I realize this probably looks like I'm needlessly re-implementing the default behavior of toggling info window visibility when a marker is clicked, but this is needed for a more complex scenario (which would be inappropriate to post in full here) to implement a user's feature request in my clustering library, see
Steps to repeat issue
1. Run the above example code
2. Tap the only marker on the map
3. Tap the only marker on the map again
Expected results
Logcat output
InfoWindowsBug: before: false
InfoWindowsBug: after: true
InfoWindowsBug: before: true
InfoWindowsBug: after: false
User experience
After #2, info window shown
After #3, info window not shown
Actual results
Logcat output
InfoWindowsBug: before: false
InfoWindowsBug: after: true
InfoWindowsBug: before: false
InfoWindowsBug: after: true
User experience
After #2, info window shown
After #3, info window shown
*********************************************************
For developers viewing this issue: please click the 'star' icon to be
notified of future changes, and to let us know how many of you are
interested in seeing it resolved.
*********************************************************