What is the TAG constant used for? ie: private static final String TAB = "........"
D danny22 Lurker May 26, 2010 #1 What is the TAG constant used for? ie: private static final String TAB = "........"
D Deleted User Guest May 27, 2010 #2 TAG is usually used to refer to your activity when logging (TAG = "com.mycompany.myapp.myactivity") Log.d(TAG, "Log something here"); It allows you to easily identify where a log message originates.
TAG is usually used to refer to your activity when logging (TAG = "com.mycompany.myapp.myactivity") Log.d(TAG, "Log something here"); It allows you to easily identify where a log message originates.