Hi All,
I have a main class:
public class MapsActivity extends MapActivity{
private class RotateView extends ViewGroup implements SensorListener {
.........
.........
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mRotateView = new RotateView(this);
mMapView = new MapView(this, "012_Xi3bU6Nqt47mEkypTux5nnQ_gSB1qFcASnQ");
mRotateView.addView(mMapView);
mRotateView.addView(txt);
setContentView(mRotateView);
........
}
This will display the map view on complete screen.
I want to display Map on half of the screen(360px * 300 px) and want to add edittext, button and map Zoom controls over the layout.
Is it possible to do that ???
If so, can you help me how to add this using codes ?
Regards,
Kamal


