Assigned
Status Update
Comments
se...@google.com <se...@google.com> #2
I just noticed that calling .showInfoWindow() on the marker DOES place it on top of the others.
Sadly I want no info window at all. For now the trick is to create a 0px * 0px view in my own InfoWindowAdapter.
Sadly I want no info window at all. For now the trick is to create a 0px * 0px view in my own InfoWindowAdapter.
ma...@gmail.com <ma...@gmail.com> #3
* The reproducibility rate : 100%
* Emulator build And version : API 34. Build 35.5.4-13061114 (HVF-15.3.0)
* Emulator build And version : API 34. Build 35.5.4-13061114 (HVF-15.3.0)
se...@google.com <se...@google.com> #4
You can now change a Marker's icon (thanks!), however this functionality is still required!
I have tried the workaround of a 0 sized view as below, but the view actually takes up the whole width of the map and half the height (i.e. all the space above the Marker) - which stops all user interaction with the top half of the map. (If you call show then hide then the Marker is placed back to it's original z-order).
zeroSizedInfoWindow = new View(getActivity());
zeroSizedInfoWindow.setLayoutParams(new ViewGroup.LayoutParams(0, 0));
I have tried the workaround of a 0 sized view as below, but the view actually takes up the whole width of the map and half the height (i.e. all the space above the Marker) - which stops all user interaction with the top half of the map. (If you call show then hide then the Marker is placed back to it's original z-order).
zeroSizedInfoWindow = new View(getActivity());
zeroSizedInfoWindow.setLayoutParams(new ViewGroup.LayoutParams(0, 0));
Description
Emulator version / Build id: XR Device - API 34
SDK version: Version: 1.0.0-alpha02
Repro Steps:
I've implemented the file picker, using the contract
ActivityResultContracts.PickVisualMedia()
. I launch aPickVisualMediaRequest(ActivityResultContracts.PickVisualMedia.ImageAndVideo)
. When I pick my image/video, the picker bottom sheet dialog close but I never reach myonResult
of myrememberLauncherForActivityResult
in the spatial mode. When I call my function from the home mode, it's working.Expected behavior: Get the uri from files in spatial mode
Actual behavior: I only get the uri in home mode
(Please attach log files and code snippets if possible)