Question about method put "java" in android

mhmd :

What mean Non-static method 'put(java.lang.String, java.lang.String)' cannot be referenced from a static context in android studio?

Gabriele Mariotti :

Use

contentValues.put("name",name);

instead of

ContentValues.put("name",name);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related