Null Pointer Exception in Android , what does it say? [duplicate]

NullPointerException is a situation in code where you try to access/ modify an object which has not been initialized yet. It essentially means that object reference variable is not pointing anywhere and refers to nothing or ‘null’.

Leave a Comment