2014-12-05 2 views
-1

Вот код программы. Пожалуйста, помогите мне.Метод onStart (Context, int) не определен для типа Object

public void onStart(Context paramIntent, int paramInt) 
     { 
     //super.onStart(paramIntent,paramInt);//ERROR IN THIS LINE 
     this.dbhelper = new DBHelper(getApplicationContext()); 
     this.db = this.dbhelper.getReadableDatabase(); 
     this.c = this.dbhelper.getPlaces(this.db); 
     this.locManager = ((LocationManager)getSystemService("location")); 
     this.db.close(); 
     this.am = ((AudioManager)getSystemService("audio")); 
     if (this.locManager != null) 
     { 
      if (!this.locManager.isProviderEnabled("gps")) 
      { 
      startActivity(new Intent("android.settings.LOCATION_SOURCE_SETTINGS")); 
      Toast.makeText(paramIntent, "Enable Gps!", 1).show(); 
      } 
      this.locManager.requestLocationUpdates("gps", 300000L, 10.0F, this); 
     } 
     } 
+0

Он должен быть 'общественного недействительными OnStart (Намерение Намерение, Int paramInt) 'not' public void onStart (Context paramIntent, i nt paramInt) ' – Piyush

ответ

-1

@Piyush Гупта писал:

Оно должно быть:

public void onStart(Intent intent, int paramInt) 

не

public void onStart(Context paramIntent, int paramInt) 
+0

([Отвечено в комментарии и преобразовано в сообщество wiki.] (http://meta.stackoverflow.com/questions/251597/question-with-no-answers-but-issue-solved-in- в-комментарии)) –

 Смежные вопросы

  • Нет связанных вопросов^_^