I already have all the external settings performed, but my question is how to add googleMap programmatically on a RelativeLayout?
Here's my RelativeLayout
public class Page extends RelativeLayout {
private Context context;
public Page(Context context) {
super(context);
this.context = context;
this.setLayoutParams(new RelativeLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
// Eu preciso gerar o googleMap aqui
}
}