Android: ClassNotFoundException while class is present

后端 未结 3 1075
鱼传尺愫
鱼传尺愫 2020-12-18 14:39
E/AndroidRuntime: FATAL EXCEPTION: main
 Process: be.kdg.examen, PID: 4451
 java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{be.kdg.examen/be         


        
3条回答
  •  不思量自难忘°
    2020-12-18 14:47

    it is looking for the class in the package be.kdg.examen.MainActivity whereas your MainActivity is in be.kdg.examen.vraag5.MainActivity

    Please check what is the complete path mentioned in your AndroidManifest.xml file if its mentioned as .MainActivity change it to .vraag5.MainActivity

提交回复
热议问题