스피너에 있는 지역 선택하면 지정해준 위도경도로 맵이 이동하는 걸 구현하려고 하고 있는데 에러가 납니다,,ㅠㅠ

소스는,,,

public class spinner extends Activity
implements AdapterView.OnItemSelectedListener {
 MapView mapViews;
 String[] items={"성북구", "종로구", "개양구"};

 
 EditText editText1 = new EditText(getApplicationContext());
 
 
 @Override
 public void onCreate(Bundle icicle) {
  super.onCreate(icicle);
  setContentView(R.layout.main);
  mapViews = (MapView)findViewById(R.id.mapView1);
  
  if(items.toString()== "성북구"){
   GeoPoint p = new GeoPoint(37589632,127019827);
   
   MapView.LayoutParams geoLP;
   geoLP = new MapView.LayoutParams(MapView.LayoutParams.WRAP_CONTENT,
            MapView.LayoutParams.WRAP_CONTENT,
            p,
            MapView.LayoutParams.TOP_LEFT);
   
  }else if(items.toString()== "종로구"){
   GeoPoint a = new GeoPoint(37589620,127019827);
   
   MapView.LayoutParams geoLP1;
   geoLP1 = new MapView.LayoutParams(MapView.LayoutParams.WRAP_CONTENT,
            MapView.LayoutParams.WRAP_CONTENT,
            a,
            MapView.LayoutParams.TOP_LEFT);
   
  }else if(items.toString()== "개양구"){
   GeoPoint s = new GeoPoint(37589625,127019827);
   
   MapView.LayoutParams geoLP2;
   geoLP2 = new MapView.LayoutParams(MapView.LayoutParams.WRAP_CONTENT,
            MapView.LayoutParams.WRAP_CONTENT,
            s,
            MapView.LayoutParams.TOP_LEFT);
           
  }
  
  
  Spinner spin=(Spinner)findViewById(R.id.spinner);
  spin.setOnItemSelectedListener(this);

  ArrayAdapter<String> aa=new ArrayAdapter<String>(this,
   android.R.layout.simple_spinner_item,items);

  aa.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  spin.setAdapter(aa);
 }

 public void onItemSelected(AdapterView<?> parent,
 View v, int position, long id) {
  
  mapViews.addView(child, index);
 }

 public void onNothingSelected(AdapterView<?> parent) {
 
  mapViews.addView(editText1);
 }
}


이건데....onItemSelected() 메소드 부분에서 스피너 선택된 지역을 onCreate()문에 구연한 if문 대로 수행하도록 하려고 했는데,,

빨간색으로 한 저 부분이,,, mapViews에서 어떤 메소드를 써서 해줘야 할지 모르겠더라구요,,,ㅠㅠ

답변 부탁드립니다,,ㅠ