Android Studios doesn't understand Log function
问题 I'm fairly new to android programming in general, and I'm having problems with printing to my log. I'm using Log.v() to do it, but I get an error: "cannot resolve symbol v" This is the code: import android.util.Log; public class DressDatabase { Dress[] dresses; private static final String TAG = "Testing: "; public DressDatabase(){ dresses = new Dress[15]; } Log.v(TAG, "String"); } 回答1: Try this: import android.util.Log; public class DressDatabase { Dress[] dresses; private static final String