compass position on Top right corner on google map v2 in android

android

Solution

By default `Compass` is coming at left side corner in Google maps V2. You just set`.setCompassEnabled(true)`.

myMap.getUiSettings().setCompassEnabled(true);

and also compass icon appear only if you rotate the map to not align to north.

Problem

Anyone please help me, I want to set compass button on top right corner on the Google map. I have wasted my lot of time but i didn't find any answer that can help me. How can I achieve this with the Google maps ? Any suggestions?

Original source