Unfortunately The Application Has Stopped
when i start my activity in the emulator of eclipse i have the message unfortunately the application has stopped I do not understand the LogCat my logCat says that please help me
Solution 1:
Put this in your onCreate()
super.onCreate()
Solution 2:
android.app.SuperNotCalledException: Activity {tabet.salah.ventemagasin/tabet.salah.ventemagasin.LoginActivity} did not call through to super.onCreate()
call super.onCreate(savedinstancestate)
in your LoginActivity onCreate()
method
Solution 3:
in your activity LoginActivity
in onCreate
add:
super.onCreate();
Solution 4:
You are probably not calling super.onCreate()
in your LoginActivity
's onCreate
Post a Comment for "Unfortunately The Application Has Stopped"