I want to move Google map layout items at runtime, but I\'m not able to do it and I don\'t know if it\'s possible or not.
What I want to do is: I have a Google map fragment
As long as the layout process is not finished, the view's dimension is set to 0. Using Handler, you can set the map's padding after the layout is done.
new Handler().post(new Runnable() {
@Override
public void run() {
mapHelper.map.setPadding(0,0,0,ad.getHeight());
}
});