How can I get the current padding of a Google Map provided by the Google Maps Android API?
I know that I can set the padding with setPadding(int left, int top, int right, int bottom).
But I want to change only the left padding and keep the others.
How can I get the current padding of a Google Map provided by the Google Maps Android API?
I know that I can set the padding with setPadding(int left, int top, int right, int bottom).
But I want to change only the left padding and keep the others.
seems like you cant do this yet. could be intentional. use a decorator pattern and wrap around the googlemap object and store the padding yourself so you can retrieve it.