private static class OpenHelper extends SQLiteOpenHelper {
OpenHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}}
I cannot understand the meaning of type Context
. I read the manual but can not understand.