Skip to content Skip to sidebar Skip to footer

Android Logcat Error

Anyone can tell me what's the reason behind this run-time error? java.lang.RuntimeException: Unable to instantiate activity ComponentInfo Caused by: java.lang.InstantiationExceptio

Solution 1:

InstantiationException:

Thrown when a program attempts to access a constructor which is not accessible from the location where the reference is made.

That came from The Docs

I can't say what EXACTLY caused your exception, but if you post the entirety of the error from Logcat and the line where the exception happens, or a block of code where the exception happens, that may help a little more.

Post a Comment for "Android Logcat Error"