Status Update
Comments
ch...@google.com <ch...@google.com>
ta...@planner5d.com <ta...@planner5d.com> #2
Thank you for posting.
Kindly provide a sample app with screen recording and steps to reproduce for further checking.
ih...@gmail.com <ih...@gmail.com> #3
Thank for your help.
The issue is easily reproduced with the Stroke and Width settings for Buildings (3d and Footprint) within the latest Maps JavaScript API and both the old web-based Map Styles editor and the new cloud-based Map Styles editor. You can reproduce the issue by attempting to add an outline (stroke) of any width under Landscape-Human-made(man_made)-Buildings. The expected changes do not show in the rendered map within the Styles editor(s) or when loading the map via saved Map ID elsewhere.
I don't have time this week to author a screen recording that redacts my proprietary intellectual property, and I certainly won't be providing a copy of my software or authoring a sample app for you when you can already easily duplicate the bug in your own Map Styles editors.
I may have time to provide a marked-up screenshot from the Map Styles editor later tonight or tomorrow when I am back at my computer.
The issue is easily reproduced with the Stroke and Width settings for Buildings (3d and Footprint) within the latest Maps JavaScript API and both the old web-based Map Styles editor and the new cloud-based Map Styles editor. You can reproduce the issue by attempting to add an outline (stroke) of any width under Landscape-Human-made(man_made)-Buildings. The expected changes do not show in the rendered map within the Styles editor(s) or when loading the map via saved Map ID elsewhere.
I don't have time this week to author a screen recording that redacts my proprietary intellectual property, and I certainly won't be providing a copy of my software or authoring a sample app for you when you can already easily duplicate the bug in your own Map Styles editors.
I may have time to provide a marked-up screenshot from the Map Styles editor later tonight or tomorrow when I am back at my computer.
ih...@gmail.com <ih...@gmail.com> #4
Good morning,
To follow-up on this in an effort to assist you in bringing this bug to a resolution, please see the attached screenshot from the (old) Map Styles editor showing the issue and how you can duplicate it on your own. Similarly, the issue can also be duplicated in the (new) preview of the cloud-based Map Styles editor. Stroke color and width are not working as expected, for both the 3d and footprint style of buildings on the map. To assist you in locating the Map Styles editor, here is the link to Map Styles:https://console.cloud.google.com/google/maps-apis/studio/styles
To follow-up on this in an effort to assist you in bringing this bug to a resolution, please see the attached screenshot from the (old) Map Styles editor showing the issue and how you can duplicate it on your own. Similarly, the issue can also be duplicated in the (new) preview of the cloud-based Map Styles editor. Stroke color and width are not working as expected, for both the 3d and footprint style of buildings on the map. To assist you in locating the Map Styles editor, here is the link to Map Styles:
ch...@google.com <ch...@google.com> #5
Thank you for the information.
We have verified and logged this issue internally. Please note that we cannot give you any timelines, but you can star the issue to get notifications.
[Deleted User] <[Deleted User]> #6
Thank you for the update and for your help on this. I have stared this issue and will be watching for future updates.
jo...@gmail.com <jo...@gmail.com> #7
redacted
jo...@gmail.com <jo...@gmail.com> #8
redacted
br...@gmail.com <br...@gmail.com> #9
redacted
pi...@googlemail.com <pi...@googlemail.com> #11
<codes><312220318></codes>
gl...@gmail.com <gl...@gmail.com> #12
As I noted above, I noticed some minor positive progress on this bug fix. I am wondering if there are any official updates highlighting what has been fixed so far and what is currently being worked on or pending?
[Deleted User] <[Deleted User]> #13
Tested again today with the latest Map Styles editor, since it has had several recent updates, but unfortunately Stroke and Width for Buildings (3d and Footprint) are still not working as expected.
ch...@google.com <ch...@google.com> #14
Adding another issue that I noticed when testing again today. Building Fill color is missing the Transparency option. If I recall correctly, in the past, 3D Buildings automatically had some transparency to allow you to see the road names within the road strokes/lines/intersections through the buildings when the map is tilted. This is especially useful when viewing metropolitan areas with lots of large/tall buildings. Screenshot attached (Transparency-Issue-Expected.jpg).
Please add this to the list of bugs/issues that I have reported above: Building Fill color is missing the Transparency option.
Please add this to the list of bugs/issues that I have reported above: Building Fill color is missing the Transparency option.
Description
In TabLayout there's
private static final Pools.Pool<Tab> sTabPool = new Pools.SynchronizedPool<>(16);
When it tries to reuse Tabs from this Pool it can crash
Caused by: java.lang.IllegalArgumentException: Tab belongs to a different TabLayout.
at android.support.design.widget.TabLayout.addTab(TabLayout.java:433)
at android.support.design.widget.TabLayout.populateFromPagerAdapter(TabLayout.java:772)
at android.support.design.widget.TabLayout.setPagerAdapter(TabLayout.java:763)
at android.support.design.widget.TabLayout.setupWithViewPager(TabLayout.java:715)
at org.jonathancaryl.tablayouttest.MainActivity.onCreate(MainActivity.java:53)
at android.app.Activity.performCreate(Activity.java:6237)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
at android.app.ActivityThread.-wrap11(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:148)
at android.app.ActivityThread.main(ActivityThread.java:5417)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
It looks like the mParent inside the Tab isn't cleared in the reset() method, so if the TabLayout changes (e.g. the Activity is destroyed and recreated) then it throws the IllegalArgumentException.