Skip to content Skip to sidebar Skip to footer

Cannot Resolve Context Method

I'm trying to use database in my app and have created an helper class with onCreate and onUpgrade method and an constructor. Then in another class I try to create an object of my h

Solution 1:

try this

  context = getApplicationContext();
super(context, DATABASE_NAME, null, DATABASE_VERSION);

}

Hope it helps

Post a Comment for "Cannot Resolve Context Method"