Error en Android "SuperNotCalledException: La actividad no ha llamado a super.OnCreate ()"

Uncaught handler: thread principal saliendo debido a la excepción no detectada android.app.SuperNotCalledException: La actividad no llamó a través de super.OnCreate ()

Mi código es:

public void onCreate(Bundle savedInstanceState) { boolean isEnabled = Settings.System.getInt(this.getApplicationContext().getContentResolver(),Settings.System.AIRPLANE_MODE_ON, 0) == 1; Settings.System.putInt(this.getApplicationContext().getContentResolver(),Settings.System.AIRPLANE_MODE_ON, isEnabled ? 0 : 1); // Post an intent to reload Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED); //intent.putExtra("state",! isEnabled);//Call ON try { Thread.sleep(15000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } intent.putExtra("state", isEnabled); this.getApplicationContext().sendBroadcast(intent); } 

Agregue super.onCreate(savedInstanceState);

  public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); boolean isEnabled = Settings.System.getInt(this.getApplicationContext().getContentResolver(),Settings.System.AIRPLANE_MODE_ON, 0) == 1; ... ... ... 
FlipAndroid es un fan de Google para Android, Todo sobre Android Phones, Android Wear, Android Dev y Aplicaciones para Android Aplicaciones.