1
I already have all external settings performed, but my question is how to add Googlemap programmatically in a Relativelayout?
Here is 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
}
}
For which map version would this implementation be, google maps v1 or v2?
– Douglas Mesquita
google maps v2...
– Igor Ronner