我就是这样的:
// in some.class.with.Constantspublic static final boolean DEV_MODE = true;// in some other classimport static some.class.with.Constants.DEV_MODE;if(DEV_MODE){ Log.d('sometag', 'somemessage');}
我就是这样的:
// in some.class.with.Constantspublic static final boolean DEV_MODE = true;// in some other classimport static some.class.with.Constants.DEV_MODE;if(DEV_MODE){ Log.d('sometag', 'somemessage');}