Blank Layout - Eglsurfaceattrib Not Implemented
I am constantly recieving the following message: eglSurfaceAttrib not implemented I tried cleaning the project, played around with manifest, search others who had similar issue s b
Solution 1:
You are declaring two Activities in your File: ProfileCreation
and LoadImg
. Only the latter has itsonCreate()
method defined. But Android
searches for the ProfileCreation
onCreate()
method and does not find it. So, it does not draw your layout. Remove one of the Activities declaration. I also noticed that LoadImg Activity is not defined at your manifest.xml file.
Edit: You are starting your ACTION_PICK Intent
with startActivityForResult()
. For receiving the result of that Intent
, you must override onActivityResult()
method, so you can handle the picked Image info from the Gallery.
Post a Comment for "Blank Layout - Eglsurfaceattrib Not Implemented"